python两行代码通过 摘要:##### 关于找到规律之后python两行代码通过这件事 ```python n,s=map(int,input().split()) print ((int(s)+int(2**(n+1)-…… 题解列表 2023年02月01日 0 点赞 0 评论 461 浏览 评分:9.0
第一个写题解的 有点意外哈哈 摘要:```c #include #include int main() { char a[1000]; int flag=0;//flag作为间断点 gets(a);//gets能接收…… 题解列表 2023年02月02日 0 点赞 0 评论 545 浏览 评分:8.0
1249: 简单编码 摘要:```cpp #include using namespace std; int main() { string str; while(getline(cin,str)) …… 题解列表 2023年02月02日 0 点赞 0 评论 505 浏览 评分:9.9
结构体之时间设计C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>struct date{ int year; int month; int d…… 题解列表 2023年02月02日 0 点赞 0 评论 311 浏览 评分:0.0
1250: 素数回文 摘要:```cpp #include using namespace std; bool a[100001000]; int main() { long long n1,n2,t=0,t…… 题解列表 2023年02月02日 0 点赞 0 评论 380 浏览 评分:9.9
递归写法,分子分母拆分成2组斐波那锲数列 摘要:#include<stdio.h> int Fun(int n) { if (n==1) { return 1; } if (n==2) { return 2; …… 题解列表 2023年02月02日 0 点赞 0 评论 273 浏览 评分:0.0
判断一个数能否同时被3和5整除 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x; scanf("%d",&x); if(x%3==0&&x%5==0) printf("Y…… 题解列表 2023年02月02日 0 点赞 0 评论 330 浏览 评分:0.0
使用选择法排序字符串 摘要:```c #include #include int main() { char a[3][100]; for(int i=0;i…… 题解列表 2023年02月02日 0 点赞 0 评论 389 浏览 评分:0.0
python最大配对简单解法 摘要:B=[]n=int(input())A=list(map(int,input().split()))A.sort() #正序排序(小到大)b=list(map(int,input().split()…… 题解列表 2023年02月02日 0 点赞 0 评论 312 浏览 评分:0.0
亲和数(水题) 摘要:```c #include long long f(int n){ long long i,sum=0; for(i=1;i…… 题解列表 2023年02月02日 0 点赞 0 评论 356 浏览 评分:0.0