Advertisement
dllbridge

Untitled

Aug 18th, 2019
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7.    
  8.     setlocale(LC_ALL,"Rus");
  9.    
  10.     int a, chislo = 1; 
  11.    
  12.     for(a = 1; a < 13; a ++)
  13.     {
  14.        cout << chislo << "\t" << chislo*chislo << endl;
  15.        chislo = chislo + 1;
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement