题解列表

筛选

编写题解 1169: 绝对值排序

摘要:解题思路:注意事项:参考代码:while True:    a = list(map(int,input().split()))    if a[0]==0:        break    else……

1014: [编程入门]阶乘求和

摘要:解题思路:注意事项:注意一下数据范围,unsigned long int型最大参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n)……