题解列表

筛选

成绩排序(用结构体来做)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct student {     char name[20];     int……

c语言代码解决问题

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

奖学金(结构体实在是太好用啦)

摘要:解题思路:注意事项:注意只有前五名才有奖学金参考代码:#include<stdio.h> struct student  {     int sno;     int Chinese;   ……

津津的储蓄计划java

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

数组记录血压

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

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void add(int a[], int m, int b[], int n){ int i; for (i = 0; i < n; ……

简单粗暴好理解

摘要:解题思路:单独加一行一列来保证每个格子的八个相邻位置都是干净的。参考代码:#include<iostream> using namespace std; int main() {     ……