glafyn77

Untitled

Feb 17th, 2020
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.  
  2.  
  3. #include "pch.h"
  4. #include <iostream>
  5. using namespace std;
  6. int main()
  7. {
  8.  
  9.     int y = 0;
  10.  
  11.     for (int i = 1; i < 10; i++)
  12.     {
  13.         int y  = 5 * i;
  14.        
  15.         cout << 5 << " x " << i << "=" << y << endl;
  16.     }
  17.    
  18. }
Add Comment
Please, Sign In to add comment