Wednesday, August 24, 2016

Display Number 1 to 10 in C++

#include<iostream>
using namespace std;
int main()
{
    cout<<"The first 10 integers are "<<endl;
    for(int count=1;count<=10;count++)
    cout<<" "<<count;
    return 0;
}





Do Comment,Share :)
Sharing is Caring ;)

No comments:

Post a Comment