1267: A+B Problem 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月12日 0 点赞 0 评论 376 浏览 评分:8.0
1586: 蓝桥杯算法训练VIP-A+B problem 摘要:简单的A+B问题 ```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; c…… 题解列表 2023年01月12日 1 点赞 0 评论 174 浏览 评分:9.9
1620: 蓝桥杯算法训练VIP-字符串的展开 摘要:```cpp #include using namespace std; int p1,p2,p3,i=0,k; char ch[300],be,af,f,j,p; int main() …… 题解列表 2023年01月12日 0 点赞 0 评论 259 浏览 评分:9.9
1761: 学习ASCII码 摘要:只要进行int和char之间的的转换就行了 ```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月12日 1 点赞 0 评论 1153 浏览 评分:9.3
1780: 字符与它对应的ASC码 摘要:```cpp #include using namespace std; int main() { char ch; ch=getchar(); cout…… 题解列表 2023年01月12日 0 点赞 0 评论 315 浏览 评分:9.9
1855: 输出字符'A'个数 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; for(int i=1;i…… 题解列表 2023年01月12日 0 点赞 0 评论 252 浏览 评分:9.9
水题目,只需一个bool 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_leap(int y){ return y%4 == 0 && y % 100…… 题解列表 2023年01月11日 0 点赞 0 评论 194 浏览 评分:0.0
3种方法教你求最大值-C++语言 摘要:> ***解题思路:设置变量 第一种:使用if条件判断语句 第二种:引入布尔常量 第三种:使用三目运算符【~~划重点~~】* **参考代码:第一种:使用if条件判断语句 注:这是初学者最常…… 题解列表 2023年01月11日 0 点赞 1 评论 225 浏览 评分:9.9
简简单单无脑列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void GetReal(float x){ cout << x << endl;}void …… 题解列表 2023年01月11日 0 点赞 0 评论 173 浏览 评分:0.0
c++语言解决电报加密 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char…… 题解列表 2023年01月11日 0 点赞 0 评论 178 浏览 评分:0.0