Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main(void)
  4. {
  5.  
  6. while(!cin.eof())
  7. {
  8. int x;
  9. cin>>x;
  10. int tab[x];
  11. for (int i=x-1;i>=0;i--){
  12. cout<<tab[i]<<" ";
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement