2880: 计算鞍点 摘要:``` #include using namespace std; int a[6][6]; int main() { int n = 5; for (int i = 1;…… 题解列表 2023年12月29日 0 点赞 0 评论 237 浏览 评分:9.9
题解 2852: 配对碱基链 摘要: #include using namespace std; char a[256]; int main(){ cin>>a; int q=…… 题解列表 2023年12月29日 0 点赞 0 评论 203 浏览 评分:0.0
题解 2854: 密码翻译 摘要: #include using namespace std; char a[256],b; string w; int main(){ …… 题解列表 2023年12月29日 0 点赞 0 评论 274 浏览 评分:0.0
2854: 密码翻译 摘要:``` #include using namespace std; const int N=100010; string a; //字符串 int main() { getline(c…… 题解列表 2023年12月29日 0 点赞 0 评论 192 浏览 评分:9.9
2858 整理药房 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=110;char s[N];int main(){ int…… 题解列表 2023年12月29日 0 点赞 0 评论 183 浏览 评分:9.9
自定义函数之数字后移,vector 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <iomanip>#include<cstdio>#include<cstring…… 题解列表 2023年12月29日 0 点赞 0 评论 164 浏览 评分:0.0
java IP判断 IP判断 摘要:解题思路:注意事项:try { // 可能发生异常的语句} catch(ExceptionType e) { // 处理异常语句}如果 try 语句块中发生异常,那么一个相应的异常对象就会…… 题解列表 2023年12月29日 0 点赞 0 评论 256 浏览 评分:9.9
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin >> a>>b>…… 题解列表 2023年12月29日 0 点赞 0 评论 269 浏览 评分:0.0
java Tom数 Tom数 摘要:解题思路:见代码注释注意事项:sum要在while循环里面!!!一定要注意细节!!!参考代码:import java.util.Scanner; public class Main { …… 题解列表 2023年12月29日 0 点赞 0 评论 176 浏览 评分:9.9
java 陈教主的三角形 摘要:解题思路:注意事项:构成三角形的条件是:1,任意两边之和大于第三边 2,任意两边之差小于第三边。参考代码:…… 题解列表 2023年12月29日 0 点赞 0 评论 158 浏览 评分:9.9