1239: 班级人数 摘要:```cpp #include using namespace std; float least_stu(float a,float b) { int N=1; bool …… 题解列表 2023年01月31日 0 点赞 0 评论 329 浏览 评分:9.9
结构体之成绩记录(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { char num[10]; char name[20]; int a; i…… 题解列表 2023年01月31日 0 点赞 0 评论 307 浏览 评分:0.0
计算(a+b)*c的值 摘要:解题思路:输入后直接输出注意事项:无参考代码:#include<iostream> using namespace std; int main( ){ int a,b,c; cin>>a>>b…… 题解列表 2023年01月31日 0 点赞 0 评论 463 浏览 评分:9.9
1240: 生日日数 摘要:```cpp #include using namespace std; bool check(int n) { if(n%4==0&&n%100||n%400==0) …… 题解列表 2023年01月31日 0 点赞 0 评论 436 浏览 评分:9.9
1210: 小明A+B(简单解法) 摘要:解题思路:对于小于100的数,对100取余得它本身对于大于100的数,对100取余得后两位参考代码:#include<stdio.h> int main(){ int c,i,n,a,b; sc…… 题解列表 2023年01月31日 1 点赞 0 评论 590 浏览 评分:9.9
数字的处理与判断 摘要:```python while True: try: a = list(map(int, input())) b = a[-1: -7: -1] print(len(a)) …… 题解列表 2023年01月31日 0 点赞 0 评论 421 浏览 评分:2.0
基础的筛选n内素数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_prim(int i){ bool ans=true; for(i…… 题解列表 2023年01月31日 0 点赞 0 评论 288 浏览 评分:0.0
超简化版 字符串的查找删除 使用 substr erase 及cin>>读入\n解决方法 摘要:```cpp #include #include using namespace std; int main() { string shor,mark; string a…… 题解列表 2023年01月31日 0 点赞 0 评论 480 浏览 评分:9.9
1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:```cpp #include using namespace std; string zm; int n; void deal_rev(int a,int b) { if(a>…… 题解列表 2023年02月01日 0 点赞 0 评论 640 浏览 评分:9.9
1463: 蓝桥杯基础练习VIP-Sine之舞 摘要:```cpp #include using namespace std; string s; void dfs(int begin,int num) { if(begin==num…… 题解列表 2023年02月01日 0 点赞 0 评论 370 浏览 评分:9.9