题解 2752: 整型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; short b; cout<<size…… 题解列表 2023年12月09日 0 点赞 0 评论 279 浏览 评分:9.9
编写题解 3003: 鸡兔同笼问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; cout…… 题解列表 2023年12月09日 0 点赞 0 评论 247 浏览 评分:9.9
编写题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char c; cin>>c; if(in…… 题解列表 2023年12月09日 0 点赞 0 评论 330 浏览 评分:9.9
for循环简单解题 摘要:解题思路:注意事项:是s【f-1】,不是s【i-】哦!!!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s; …… 题解列表 2023年12月09日 0 点赞 0 评论 202 浏览 评分:9.9
1866:三位数反转(C++) 摘要:解题思路:百位数为i/100;十位数为1/10-i/100*10;个位数为i-i/100*100-(i/10-i/100*10)*10注意事项:此题目含“有多组测试数据”则需要用循环结构参考代码:#i…… 题解列表 2023年12月09日 0 点赞 0 评论 276 浏览 评分:9.9
1446: 蓝桥杯2013年第四届真题-核桃的数量 摘要: $$GCD(A,B)\times LCM(A,B)=A\times B$$ ```cpp #include using namespace std; // 最大公约数 int GCD(…… 题解列表 2023年12月09日 1 点赞 0 评论 248 浏览 评分:9.9
C语言调用函数求阶乘 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>long long fun(int x){ long long y=0; if(x==1) retu…… 题解列表 2023年12月09日 0 点赞 0 评论 255 浏览 评分:9.9
2920: 分数线划定 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { string str; int…… 题解列表 2023年12月09日 0 点赞 0 评论 214 浏览 评分:9.9
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh; int yv; …… 题解列表 2023年12月09日 0 点赞 0 评论 132 浏览 评分:9.9
注意爆int(错了十几次) 摘要:1. 打表import java.util.Scanner; public class Main { static int N = 1010, mod = 1000000007; …… 题解列表 2023年12月09日 0 点赞 2 评论 1157 浏览 评分:9.9