pomoc
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <cstdlib>
//using namespace std;
int main(int argc, char *argv[])
{
int i,j,x,y;
//int nat[10][10];
cout << "Hello, world!" << endl;
cout << "nacitame maticu";
cout << "zadaj rozmery: ";
cin >> x >> y;
cout << x << y << endl;
/*
for(i=1;i==5;i++){
for(j=1;j==5;j++){
cout << "zadaj" << i << j << endl;
cin >> mat[i][j];
}
} */
return EXIT_SUCCESS;
}
Pre pridávanie komentárov sa musíte prihlásiť.
//using namespace std;
na
using namespace std;
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <cstdlib>
using namespace std;
int main(int argc, char *argv[])
{
int i,j,x,y;
int nat[10][10];
cout << "Hello, world!" << endl;
cout << "nacitame maticu";
cout << "zadaj rozmery: ";
cin >> x >> y;
cout << x << y << endl;
for(i=1;i==x;i++){
for(j=1;j==y;j++){
cout << "zadaj" << i << j << endl;
cin >> mat[i][j];
}
}
for(i=1;i==x;i++){
for(j=1;j==y;j++){
cin >> mat[i][j];
}
}
toto mi nejde a neviem preco