Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- #define tamL 10
- #define tamC 12
- int main()
- {
- int n=10;
- int resp[tamL][tamC];
- for(int l=0; l<2; l++)
- {
- for(int r=0; r<=10; r++)
- {
- cout << "Digite a " << r + 1 <<"ª " << "resposta do Aluno: \n";
- cin >>resp[l][r];
- cout <<"\n";
- }
- }
- for(int l=0; l<2; l++)
- {
- for(int r=0; r<=10; r++)
- {
- cout << resp[l][r]<<endl;
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement