基因相关性(C++)简单实用 摘要:参考代码:#include <iostream>#include <string>using namespace std;string compareDNA(const string& dna1, c…… 题解列表 2023年07月16日 0 点赞 0 评论 483 浏览 评分:9.9
密码翻译(C++)简单实用 摘要:参考代码:#include <iostream>#include <string>using namespace std;string encrypt(const string& str) { …… 题解列表 2023年07月16日 0 点赞 0 评论 406 浏览 评分:9.9
整理药名(C++)简单实用 摘要:代码解析:参考代码:#include <iostream>#include <string>#include <cctype>using namespace std;string formatMedi…… 题解列表 2023年07月16日 0 点赞 0 评论 672 浏览 评分:6.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a[100][100]; scanf("%d", &n); for (i …… 题解列表 2023年07月16日 0 点赞 0 评论 461 浏览 评分:0.0
不高兴的津津 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int day=0,maxx=0; f…… 题解列表 2023年07月16日 0 点赞 0 评论 259 浏览 评分:0.0
2903: 不高兴的津津 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,b,c,maxday = 0,maxtime = 0;int main(){ for…… 题解列表 2023年07月16日 0 点赞 0 评论 317 浏览 评分:9.9
1013: [编程入门]Sn的公式求和 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int n,ans = 2,s;int main(){ cin>>n; for(int i…… 题解列表 2023年07月16日 0 点赞 0 评论 308 浏览 评分:9.9
信息学奥赛一本通T1307-高精度乘法c++ 摘要:解题思路:看下面↓注意事项:多注意注意参考代码:#include<bits/stdc++.h>using namespace std;const int N=2e+3+10;int x[N]={0},…… 题解列表 2023年07月16日 0 点赞 0 评论 701 浏览 评分:9.9
单词替换(优解) 摘要:解题思路:看下面↓注意事项:借鉴用,不要盲目的抄参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ in…… 题解列表 2023年07月16日 0 点赞 0 评论 580 浏览 评分:9.9
1099: 校门外的树(简单c++) 摘要:解题思路:1.#include <bits/stdc++.h> using namespace std; long long a[100000];//创造数组 int main() { …… 题解列表 2023年07月16日 0 点赞 0 评论 273 浏览 评分:9.9