Advertisement
iamoran

for c++

Aug 31st, 2019
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int i;
  9.     for(i=1;i<=6;i++)
  10.     {
  11.    
  12.     cout<<"the value for i is: "<<i<<endl;
  13.     }
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement