4 条题解

  • 1
    @ 2023-5-3 10:02:37

    #include<bits/stdc++.h> using namespace std; int a[16][16],b[16][16],c[16][16],k=1; int main() { int n; cin>>n; for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { cin>>a[i][j]; } } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { cin>>b[i][j]; } } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { for(k=1;k<=n;k++) { c[i][j]+=a[i][k]*b[k][j]; } } } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { cout<<c[i][j]<<" "; } cout<<endl; } }

    • 0
      @ 2023-5-3 10:48:28

      #include<bits/stdc++.h> using namespace std; #define N 105 int main(){ int n,a[N][N],b[N][N],r[N][N]={}; cin>>n; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) cin>>a[i][j]; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) cin>>b[i][j]; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) for(int x=1;x<=n;++x) r[i][j]+=a[i][x]*b[x][j]; for(int i=1;i<=n;++i) { for(int j=1;j<=n;++j) cout<<r[i][j]<<" "; cout<<endl; } return 0; }

      • 0
        @ 2023-5-3 10:47:06

        #include<bits/stdc++.h> using namespace std; #define N 105 int main(){ int n,a[N][N],b[N][N],r[N][N]={};
        cin>>n; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) cin>>a[i][j]; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) cin>>b[i][j]; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) for(int x=1;x<=n;++x) r[i][j]+=a[i][x]*b[x][j]; for(int i=1;i<=n;++i){ for(int j=1;j<=n;++j) cout<<r[i][j]<<" "; cout<<endl; } return 0; }

        • 0
          @ 2023-5-3 10:07:30
          using namespace std;
          #define N 105 
          int main(){
          	 int n,a[N][N],b[N][N],r[N][N]={};   
          	 cin>>n;
          	 for(int i=1;i<=n;++i)
          	  for(int j=1;j<=n;++j)
          	   cin>>a[i][j];
          	for(int i=1;i<=n;++i)
          	  for(int j=1;j<=n;++j)
          	  cin>>b[i][j];
          	for(int i=1;i<=n;++i)
          	 for(int j=1;j<=n;++j)
          	  for(int x=1;x<=n;++x)
          	   r[i][j]+=a[i][x]*b[x][j];
          	for(int i=1;i<=n;++i){
          		for(int j=1;j<=n;++j)
          		 cout<<r[i][j]<<" ";
          		 cout<<endl;
          	}
             return 0;
          }
          
          • 1

          信息

          ID
          1272
          时间
          1000ms
          内存
          256MiB
          难度
          6
          标签
          递交数
          34
          已通过
          11
          上传者