Ask Question
13 June, 19:18

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.

+4
Answers (1)
  1. 13 June, 19:55
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers