#include <iostream>
#include <time.h>
using namespace std;
int z[3][3];
int i,j;
int r=0;
int l=0;
void input();
void main() {
cout<<"this code from zxl"<<endl;
srand((unsigned)time(NULL));//凤姐这是c++的随机种子 用起来挺麻烦的
input();
for( i=0; i<=2; i++) {
for( j=0; j<=2; j++) {
if(i==j)
r = r+z[i][j]; //左交叉线
if(i+j==2)
l= l+z[i][j]; //有交叉线
}
}
for( i=0; i<=2; i++) {
for( j=0; j<=2; j++) {
cout<<z[i][j]<<" ";
} cout<<endl;
}
cout<<r<<" "<<l<<endl;
}
void input(){
for(int i=0; i<=2; i++) {
for(int j=0; j<=2; j++) {
z[i][j]=rand()%10;
}
}
}