题解列表

筛选

浮点数向零舍入(python)

摘要:解题思路:输入一个浮点数,将其转为整数。注意事项:参考代码:a=float(input())print(int(a))……

汽水瓶(C语言)

摘要:汽水瓶 #include<stdio.h> int main() { int n; int sum = 0; int k = 0; int b = 0; int a……

[编程入门]选择排序

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a:    print(i,end=" ")……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> int main(){    char str[501];    gets(str);    ……