Advertisement
Guest User

new

a guest
Jun 18th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.  int i=1;
  6. while (i<=100)
  7. {
  8.   cout<<i<<endl;
  9.   i=i+1;
  10. }
  11. system ("pause");
  12. return 0 ;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement