题解列表

筛选

拆分位数 (Java代码)

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

小O的字符 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int judge(char a[],char b[]){ int x,y,i,j,flag; ch……

C语言训练-最大数问题 (C语言代码)

摘要:解题思路:写一个死循环,一直输入数字,当不是-1的时候判断,max和num的大小,如果num大则max=num;如果等于-1,退出循环。注意事项:参考代码:#include <stdio.h>int ……