C语言训练-谁家孩子跑最慢* 摘要:```cpp #include using namespace std; int main(){ int a,b,c,d,i,j,k; for(a=1;ad){ if…… 题解列表 2023年02月01日 0 点赞 0 评论 357 浏览 评分:0.0
dp区间问题~~~~ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,a[1001],dp[1001][1001],sum[1001];int main…… 题解列表 2023年02月01日 0 点赞 0 评论 279 浏览 评分:0.0
十进制转二进制 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<stack>stack<char> s;int main(){ int…… 题解列表 2023年02月01日 0 点赞 0 评论 324 浏览 评分:0.0
1248: 简单的事情 摘要:```cpp #include using namespace std; unsigned long long int jiecheng(int n) { if(n==0) …… 题解列表 2023年02月01日 0 点赞 0 评论 397 浏览 评分:9.9
1247: 筛排处理 摘要:```cpp #include #include using namespace std; int main() { int n; while(cin>>n&&n) …… 题解列表 2023年02月01日 0 点赞 0 评论 293 浏览 评分:9.9
字符串编辑 略微麻烦 摘要:解题思路:分功能解决注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; …… 题解列表 2023年02月01日 0 点赞 0 评论 336 浏览 评分:9.9
1951 求平方和 题解 摘要:只要用a2+b22就行了参考代码一:#includeusing namespace std;int main(){ int a,b; cin>>a>>b; cout<<a*a+b*b…… 题解列表 2023年02月01日 0 点赞 0 评论 517 浏览 评分:9.9
1246: 第几天 摘要:```cpp #include using namespace std; int arr[12]={31,28,31,30,31,30,31,31,30,31,30,31},sum=0; in…… 题解列表 2023年02月01日 0 点赞 0 评论 701 浏览 评分:7.3
1243: 破解平方数 摘要:```cpp #include #include using namespace std; typedef long long ll; int t,m,r[101]; ll DFS(int…… 题解列表 2023年02月01日 0 点赞 0 评论 426 浏览 评分:9.9
1242: 矩阵转置 摘要:```cpp #include using namespace std; int a[1001][1001]; int main() { int n; cin>>n; …… 题解列表 2023年02月01日 0 点赞 0 评论 295 浏览 评分:9.9