Guest User

asd

a guest
Jan 28th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <cstdlib>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int n=0;
  9. int tab[11];
  10. //cin >> n;
  11. //for (int i = 0; i < 2; i++) {
  12.  
  13. for (int i = 0; i<11; i++)
  14. tab[i] = getchar() - 48;
  15.  
  16. for (int f = 0; f<11; f++)
  17. cout << tab[f] << endl;
  18.  
  19. //}
  20. return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment