Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL,"Rus");
- int a, chislo = 1;
- for(a = 1; a < 13; a ++)
- {
- cout << chislo << "\t" << chislo*chislo << endl;
- chislo = chislo + 1;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement