C++ Program that Display Series of number from 0 to Limit enter by a user
#include <iostream>
using namespace std;
int main()
{
int a=0,limit;
cout<<"Enter the limit : " ;
cin>>limit;
while(a<=limit){
cout<<a<<endl;
a++;
}
return 0;
}
give us your feedback
About 6 Players blogs
C++ Program that display your full Name enter by a user #include <iostream> using namespace std; int main() { char F_n...
No comments:
Post a Comment