Ask Question

Given an integer variable count, write a statement that displays the value of count on the screen. Do not display anything else on the screen - - just the value of count.

+1
Answers (1)
  1. 8 November, 07:42
    0
    cout<
    Explanation:

    The above statement is in c+ + which display the value of count. The cout statement is used in c+ + to print the value on console.

    Following are the code in c++

    #include / / header file

    using namespace std; / / namespace

    int main () / / main method

    {

    int count=90; / / count variable

    cout<
    return 0;

    }

    Output:

    90

    In this program we have declared a count variable of integer type which is initialized by 90 and finally displays the value of count on the screen.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Given an integer variable count, write a statement that displays the value of count on the screen. Do not display anything else on the ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers