请在 下方输入 要搜索的题目:

8 10 14 21 28 32 51 65 74 95第五题public class Transpose{public static void main(String args[]){int a[][]=new int[3][4];int b[][]=new int[4][3];System.out.println("转置之前的矩阵");for(int i=0;i<3;i ){for(int j=0;j<4;j ){a[i][j]=(int)(100*Math.random());System.out.print(a[i][j] " ");}System.out.println();}System.out.println("转置之后的矩阵");for(int i=0;i<4;i ){for(int j=0;j<3;j ){b[i][j]=a[j][i];System.out.print(b[i][j] " ");}System.out.println();}}}

发布时间:2024-05-19 10:25:24
推荐参考答案 ( 由 搜题小帮手 官方老师解答 )
联系客服
答案:

以下文字与答案无关

提示:有些试题内容 显示不完整,文字错误 或者 答案显示错误等问题,这是由于我们在扫描录入过程中 机器识别错误导致,人工逐条矫正总有遗漏,所以恳请 广大网友理解。

相关试题
登录 - 搜题小帮手
点我刷新
立即注册
注册 - 搜题小帮手
点我刷新
立即登录