题解列表

筛选

[编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char a[10];    gets(a);    for (int……

冒泡排序c++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{     string name;     doubl……

冒泡排序c++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){     int n=0;     in……

c++萌新的题解

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    //intÊÇÕûÊý 1 2 9 69 100   ……

祝你好运laber

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a,b,c;    cin>>a>>b>>c;……

C语言训练-求矩阵的两对角线上的元素之和

摘要:解题思路:1. 首先,导入<stdio.h>头文件,该头文件包含了输入输出函数scanf和printf的声明。2. 在main函数中,声明了一些变量:   - i和j分别用于循环计数。   - n表示……

雇佣兵(Java代码)

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

问题N 阶乘求和(Java代码)

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

寻找矩阵最值

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int i=0,j=0; int n=0,max=0,h……