Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by Nightdead ( 14 years ago )
#include <iostream>
using namespace std;
int main(){
int n,i = 0, j = 0,temp=0;
cout<<"Vvedite razmernost' matrici[n<8] : ";
cin>>n;
if (n>=8) {
cout<<"Nevernoe znachenie n!";
exit(1);
}
double **matrix = new double [n];
double **mass = new double [n];
temp = n*n;
cout<<"Vvedite "<<temp<<" chisel:\n";
for (i=0;i<temp;i++) cin>>mass[i];
}
Revise this Paste