题解列表

筛选

编写题解 2884: 矩阵乘法

摘要:解题思路:矩阵相乘注意事项:每个矩阵的行和列所用的字母不同参考代码:import java.util.Scanner;public class Main {    public static void……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>int compare(const void* a, const v……

编写题解 2885: 矩阵转置

摘要:解题思路:先编写矩阵,然后进行转置注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(S……

编写题解 2886: 图像旋转

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

编写题解 2888: 图像模糊处理

摘要:解题思路:注意事项:注意那个经过图像模糊处理之后的图像B参考代码:import java.util.Scanner;public class Main {    public static void ……

1068-温度转换

摘要:解题思路:注意事项:这道题目不严谨参考代码:int ctof(int c){ int f; f = 32+c*9/5; return f; } int main(){       ……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, height[30],i,max_height;    scanf("%d", &n);  ……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int c, n, i;    scanf("%d", &c);    while (c--)    { ……