题解列表

筛选

1856: 最小三个数

摘要:解题思路:注意事项:参考代码:n = int(input()) m = list(map(int,input().split())) m.sort() for i in range(3):  ……

1848: 求输入数据绝对值

摘要:解题思路:注意事项:参考代码:while True:     try:         x = input()         print('%.2f'%abs(float(x)……

老仁的c语言

摘要:解题思路:使用if语句注意事项:注意变量的设定参考代码:#include <stdio.h>#include <stdlib.h>#define m(x,max) max=x/*分别用函数和带参的宏,……