Guest User

Untitled

a guest
Jan 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int i;
  9.     int t[10];
  10.     cout<<"Wpisz 10 liczb: ";
  11.     for (i=0;i<10;i++)
  12.         {
  13.         cin>>t[i];
  14.         cout<<" ";    
  15.         }
  16.     cout<<"\n Liczby to: \n ";
  17.    
  18.     for (i=9;i>=0;i--)
  19.         {
  20.                      cout<<t[i]," ";
  21.         }  
  22.     cout<<"\n \n";
  23.  
  24.     system("PAUSE");
  25.     return EXIT_SUCCESS;
  26. }
Add Comment
Please, Sign In to add comment