题解列表

筛选

简易,易懂

摘要:解题思路:注意事项:参考代码:intmain(){  intn;  floatsum=0; &nbsp……

C语言训练-水仙花数

摘要:解题思路:将所有三位数遍历,分别判断是否为水仙花数,是则输出。注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(void){……

布尔类型变量

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>intmain(){  boolb;&……

简单,易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  intx,y,sum;  s……

七行代码解决问题

摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))foriinrange(len(a)):  print(a[i],end……

简易,易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  floata;  scanf……

简易,易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){  charming;  sca……

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ &……

编写题解 1951: 求平方和

摘要:解题思路:求两个数的平方和        &nb……