全体目光向我看齐
2024-05-05 19:05:01
发布于:广东
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
int a[n][m];
int b[n];
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
cin>>a[i][j];
}
}
for(int i=0;i<n;i++)
{
cin>>b[i];
for(int j=0;j<m;j++)
{
if(a[b[i]-1][j]<100 and a[b[i]-1][j]>9)
{
cout<<"0"<<a[b[i]-1][j]<<" ";
}
else if(a[b[i]-1][j]<10)
{
cout<<"00"<<a[b[i]-1][j]<<" ";
}
else
{
cout<<a[b[i]-1][j]<<" ";
}
}
cout<<endl;
}
}
这里空空如也
有帮助,赞一个