题解列表

筛选

超级玛丽游戏

摘要:解题思路:同理注意事项:参考代码:#include <stdio.h>int main(){    printf( "                ********\n"            " ……

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

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

计算星期几java

摘要:解题思路:注意事项:参考代码Scanner scanner = new Scanner(System.in);int a = scanner.nextInt();int b = scanner.nex……

蛇形填数java

摘要:解题思路:注意事项:参考代码:package test;import java.util.*;public class Test1796 {    public static void main(St……

c语言代码解决问题

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