题解列表

筛选

【分糖果】C++代码

摘要:解题思路:fen()判断函数参考题解https://blog.dotcpp.com/a/74036。参考代码:#include<iostream> using namespace std; i……

C语言训练-计算1977!*

摘要:import math print(math.factorial(1977))直接调用math库中求阶乘的函数,python就是方便……

明明的随机数

摘要:n=int(input()) list1=list(map(int,input().split())) list1=list(set(list1)) list1.sort() print(le……

gets函数,简单循环

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