Guest User

Untitled

a guest
Apr 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int polje[4][4];
  6.     cout<<" Upisi i nadi najvece clanove u svakom retku dvodimenzionalnog polja"<<endl;
  7.     for(int i=0;i<4;i++){  
  8.          for(int j=0;j<4;j++){
  9.                  cin>>polje[i],[j];          
  10. }
  11.  
  12. system("Pause");
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment