Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <stdio.h>
  4. #include <windows.h>
  5.  
  6. using namespace std;
  7. int x;
  8.  
  9. int main() {
  10.    
  11.  
  12.     system("chcp1250");
  13.     system("cls");
  14.    
  15.     printf("Podaj liczbe naturalna: ");
  16.     scanf("%d", &x);
  17.  
  18.     printf("\nWczytana liczba x=%d",x);
  19.    
  20.     printf("\n\nKwadrat liczby x=%d",x);
  21.     printf("%d^2= %d",x,x*x);
  22.    
  23.     printf("\n\nSzescian liczby x=%d ",x);
  24.     printf("%d^3= %d\n\n",x,x*x*x);
  25.  
  26.     system("pause");
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement