题解列表

筛选

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double a,b,c,d,x,z; scanf("%lf %lf %lf %lf %lf",&x,&a,……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; float A,B,C; scanf("%d %d %d",&a,&b,&c); ……

画矩形(清晰思路)

摘要:解题思路:注意事项:注意换行符参考代码:#include<stdio.h>int main(){ int height,width,control,i,j;//i控制宽度,j控制高度 char ch;……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; bool b; scanf("%d",&a);       ……

ikun崩溃代码

摘要:解题思路:不会注意事项:注意看题目要求即可参考代码:#include <stdio.h>int main(){ double x; char y; float z; int   w; scan……

1223: 敲七游戏

摘要:解题思路:一行解,融入许多函数,运行很爽。注意事项:参考代码:print(len(set(list(map(lambda x : x+1 if (x % 7 == 0 or &#39;7&#39; i……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double x; scanf("%lf",&x); printf("%f\n",x); print……

1062: 二级C语言-公约公倍

摘要:基本思路: 最大公约数一定比n、m 中的最小的数据小或是一样。 最小公倍数一定是 n*m 或者是更小的数。 ```c #include int main() { in……