demowink


私信TA

用户名:dotcpp0601759

访问量:154

签 名:

等  级
排  名 16117
经  验 814
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 东北农业大学
专  业

  自我简介:

TA的其他文章

#include #include int main() { int a[5][5]; for(int i=0;i<5;i++) {for(int j=0;j<5;j++) { scanf("%d",&a[i][j]);//输入二维数组; }} int m,n,t; scanf("%d %d",&m,&n);//输入m,n; for(int i=0;i<5;i++) { if(i==m-1)//注意数组下标从0开始,对应m,n需要减一; { for(int j=0;j<5;j++) { printf("%d ",a[n-1][j]); } printf("\n"); continue;} else if(i==n-1) { for(int j=0;j<5;j++) { printf("%d ",a[m-1][j]); } printf("\n"); continue; } else {for(int j=0;j<5;j++) { printf("%d ",a[i][j]); } printf("\n"); continue;} } return 0; }
 

0.0分

3 人评分

  评论区

  • «
  • »