Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void wpisz (int T[3][4])
- {
- for(int i=0; i<3;i++)
- {
- for(int j=0;j<4; j++)
- {
- cout<<"T["<<i<<"]["<<j<<"]= ";
- cin>>T[i][j];
- }
- }
- }
- void wypisz (int T[3][4])
- {
- for(int i=0; i<3;i++)
- {
- for(int j=0;j<4; j++)
- {
- cout<<"T["<<i<<"]["<<j<<"]= ";
- cout<<T[i][j]<<" ";
- }
- cout<<endl;
- }
- }
- void wyzeruj (int T[3][4])
- {
- int wiersz;
- cout<<"\n\nPodaj wiersz do wyzerowania: ";
- cin>>wiersz;
- for(int j=0;j<4; j++)
- {
- T[wiersz][j]=0;
- }
- cout<<endl;
- }
- int main()
- {
- cout << "Hello world!" << endl;
- int Tab[3][4];
- wpisz(Tab);
- cout<<endl;
- wypisz(Tab);
- wyzeruj (Tab);
- wypisz(Tab);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement