java IP判断 IP判断 摘要:解题思路:注意事项:try { // 可能发生异常的语句} catch(ExceptionType e) { // 处理异常语句}如果 try 语句块中发生异常,那么一个相应的异常对象就会…… 题解列表 2023年12月29日 0 点赞 0 评论 251 浏览 评分:9.9
自定义函数之数字后移,vector 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <iomanip>#include<cstdio>#include<cstring…… 题解列表 2023年12月29日 0 点赞 0 评论 162 浏览 评分:0.0
2858 整理药房 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=110;char s[N];int main(){ int…… 题解列表 2023年12月29日 0 点赞 0 评论 179 浏览 评分:9.9
2854: 密码翻译 摘要:``` #include using namespace std; const int N=100010; string a; //字符串 int main() { getline(c…… 题解列表 2023年12月29日 0 点赞 0 评论 189 浏览 评分:9.9
题解 2854: 密码翻译 摘要: #include using namespace std; char a[256],b; string w; int main(){ …… 题解列表 2023年12月29日 0 点赞 0 评论 269 浏览 评分:0.0
题解 2852: 配对碱基链 摘要: #include using namespace std; char a[256]; int main(){ cin>>a; int q=…… 题解列表 2023年12月29日 0 点赞 0 评论 201 浏览 评分:0.0
2880: 计算鞍点 摘要:``` #include using namespace std; int a[6][6]; int main() { int n = 5; for (int i = 1;…… 题解列表 2023年12月29日 0 点赞 0 评论 235 浏览 评分:9.9
2913: 整数去重 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=20010;int a[N];int main() { …… 题解列表 2023年12月29日 0 点赞 0 评论 252 浏览 评分:0.0
约瑟夫环求解 摘要:解题思路:注意事项:参考代码:n = int(input())a = 0b = 0j = -1l = []for i in range(0, n): a += 1 l.append(a)w…… 题解列表 2023年12月29日 0 点赞 0 评论 213 浏览 评分:0.0
c代码记录之结构体成绩记录--函数传参 摘要: #include struct Student{ char xuehao[30],name[30]; int a,b,c; }; …… 题解列表 2023年12月29日 0 点赞 0 评论 174 浏览 评分:0.0