Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <stdio.h>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int n=0;
- int tab[11];
- //cin >> n;
- //for (int i = 0; i < 2; i++) {
- for (int i = 0; i<11; i++)
- tab[i] = getchar() - 48;
- for (int f = 0; f<11; f++)
- cout << tab[f] << endl;
- //}
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment