华为机试HJ69

news/2024/11/7 9:36:59/

HJ69 矩阵乘法

法一

import java.util.*;public class Main {public static void main(String[] args) {Scanner sc = new Scanner(System.in);while (sc.hasNext()) {int x = sc.nextInt();int y = sc.nextInt();int z = sc.nextInt();int[][] arr1 = new int[x][y];int[][] arr2 = new int[y][z];for (int i = 0 ; i < x ; i++) {for (int j = 0 ; j < y ; j++) {arr1[i][j] = sc.nextInt();}}for (int i = 0 ; i < y ; i++) {for (int j = 0 ; j < z ; j++) {arr2[i][j] = sc.nextInt();}}int[][] newArr = new int[x][z];for (int i = 0 ; i < x ; i++) {for (int j = 0 ; j < z ; j++) {for (int k = 0 ; k < y ; k++) {newArr[i][j] += arr1[i][k] * arr2[k][j];}}}for (int i = 0 ; i < x ; i++) {for (int j = 0 ; j < z ; j++) {System.out.print(newArr[i][j] + " ");}System.out.println();}}}
}

http://www.ppmy.cn/news/271745.html

相关文章

【算法与数据结构】59、LeetCode螺旋矩阵2

文章目录 题目一、方向向量法完整代码 所有的LeetCode题解索引&#xff0c;可以看这篇文章——【算法和数据结构】LeetCode题解。 题目 一、方向向量法 思路分析&#xff1a;螺旋矩阵在旋转过程中&#xff0c;我们选择的区间是左闭右开区间[ , ]&#xff0c;例如方向为从左往右…

主板开启虚拟服务器,华硕主板进入bios后怎么开启VT虚拟化技术选项?

主板bios设置中VT虚拟化技术选项怎么开启&#xff0c;太多人问到怎么开启intel Virtualization Technology选项&#xff0c;下面小编就为大家介绍一下&#xff0c;一起来看看吧! 工具/原料 华硕Asus P8H61-M LX Plus主板 英特尔Intel Core™ i3-2120处理器 方法/步骤 1、首先到…

CS61A hw04

这道题目比较有代表性&#xff0c;recursive function是解题的关键 Question 6 Write a function has_path that takes in a tree t and a string word. It returns True if there is a path that starts from the root where the entries along the path spell out the word, …

About P6

P6 P6是原是美国Primavera System Inc.公司研发的项目管理软件Primavera 6.0&#xff08;2007年7月1日全球正式发布&#xff09;的缩写&#xff0c;暨Primavera公司项目管理系列软件的最新注册商标&#xff0c;与2008年被ORACLE公司收购&#xff0c;对外统一称作 Oracle Primav…

TB6600HG原理图

PWM 斩波型双极步进电机驱动 IC TB6600HG 是 PWM 斩波型单芯片双极正弦微步步进马达驱动器。 可通过 2-相&#xff0c;1-2-相&#xff0c;W1-2-相&#xff0c;2W1-2-相&#xff0c;和 4W1-2-相励磁模式&#xff0c;实现正向和反向旋转控制。 2-相双极步进马达仅由低振动高效…

折腾BIOS,改开机logo图标

友情提示&#xff1a;刷机有风险&#xff0c;烧录需谨慎。折腾这个不像装系统&#xff0c;一旦刷失败了电脑就会变砖&#xff0c;救砖很难。我刷成功不代表在大家的主板上就能成功&#xff0c;刷废主板后果自负。 获取BIOS文件 下载 从各个厂商的官网上下载的BIOS各不相同&a…

cs61a pp+ch. 1.1-1.2+HW01

ppch. 1.1-1.2HW01 PP expressions:An expression describes a computation and evaluates to a value call expressions: function call notation (函数调用表达式) nested expressions:嵌套表达式 Discussion Question1 f min f max g, h min, max max g max(f(2,g(…

P8H61 换 CPU,升级 BIOS,IDE 转 AHCI

简述 最近把家里服役了10年的 华硕P8H61 i3-2100 进行了一次升级&#xff08;内存早已经加到了12G了&#xff09; 升级CPU 首先上淘宝买了个 E3-1230V2&#xff0c;&#xffe5;260&#xff08;i3-2100 淘宝158&#xff0c;我140包邮卖了&#xff09; 如果是比较早的 BIOS …