Advertisement
Guest User

Untitled

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