题解列表

筛选

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……

1065: 二级C语言-最小绝对值

摘要:本题有提到“绝对值”这个字眼大家要马上想起绝对值函数 1、abs abs函数用于整数,格式为 int a=…; a=abs(a);//a=a的绝对值 2、fabs abs函数用于实数,……