1671: 小九九 ```cpp#includeusingnamespacestd;intmain(){inti=1,p=1;for(p=1;p 题解列表 2023年01月29日 0 点赞 0 评论 881 浏览 评分:9.9
字符排列问题 摘要:解题思路:注意事项:参考代码:方法一:直接全排列再去重from itertools import permutationstry: while True: a=input() …… 题解列表 2023年01月29日 0 点赞 0 评论 489 浏览 评分:0.0
1670: 拆分位数 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; cout…… 题解列表 2023年01月29日 0 点赞 0 评论 644 浏览 评分:9.9
1669: 求圆的面积 ```cpp#include#include#definepi3.1415926usingnamespacestd;intmain(){floatr;cin>>r;cout 题解列表 2023年01月29日 0 点赞 0 评论 743 浏览 评分:9.9
2953: 特殊日历计算 ```cpp#include#includeusingnamespacestd;inta[100],yue[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};intmain(){intmyear=0,mmonth=0, 题解列表 2023年01月29日 0 点赞 0 评论 639 浏览 评分:9.9
2972: 除以13(c++代码) 摘要:```cpp #include #include using namespace std; const int N=1e5+10; void fwrite(int n) { if(n>…… 题解列表 2023年01月29日 0 点赞 0 评论 635 浏览 评分:9.9
2963: Tomorrow never knows? 摘要:输入的时候‘-’可以用getchar直接屏蔽掉 ```cpp #include #include using namespace std; bool IsLeapYear(int year)…… 题解列表 2023年01月29日 0 点赞 0 评论 581 浏览 评分:7.3
2969: 打印月历 ```cpp#includeusingnamespacestd;intfun(inta,intb,intq);intmain(){inti,j,m,n,t,d,s=0;cin>>m>>n;t=abs(fun(m,n,1));if(m%4==0&&m%100!=0||m%400==0)s=1;switc 题解列表 2023年01月29日 0 点赞 0 评论 962 浏览 评分:9.9
]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); int i = 0; int m = 0; int a[100]…… 题解列表 2023年01月29日 0 点赞 0 评论 577 浏览 评分:0.0
2797: 最高的分数 摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; …… 题解列表 2023年01月29日 0 点赞 0 评论 897 浏览 评分:9.9