题解列表

筛选

走方格 (Java代码)

摘要:import java.util.Scanner; public class Main {     public static void main(String[] args) {   ……

学生成绩(C语言)

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

字符串的连接

摘要:```c //题目要求把两个字符串链接,我们可以想到用数组存储,然后加上指针进行位置运算来实现,其实也可以直接用strcopy直接拷贝过去,我们这里就自己来实现字符串的连接 #include #……