C++ is the language Cfree is the compiler..
You are the Program User. I am the Programmar.
~Osaid Jamal
Wednesday, 16 April 2014
While Loop Basic Program1- Using C++
#include<iostream>
using namespace std;
int main()
{ int n=99; // make sure n isnot initiallized to 0 while(n!=0) //loop until n is 0 cin>>n; // read a number into n cout<<endl; return 0;
} Output:
No comments:
Post a Comment