Advertisement
Guest User

ispis od 1 do 100 u retcima

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