字符串输入输出函数 (超简单)(c++) 摘要:解题思路:这题会不会?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;double a;int main(){ p…… 题解列表 2022年05月11日 0 点赞 0 评论 363 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 题解(c++,switch) 摘要:解题思路:直接用switch按题目硬打就欧了!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;char z;int mai…… 题解列表 2022年05月11日 0 点赞 0 评论 392 浏览 评分:0.0
字符串的输出(C++)语言 摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace…… 题解列表 2022年05月11日 0 点赞 0 评论 488 浏览 评分:0.0
蓝桥杯算法提高VIP-剪刀石头布 c++(还算简单啦) 摘要:解题思路:不就是直接硬打吗?上简单程序!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ sc…… 题解列表 2022年05月11日 0 点赞 0 评论 323 浏览 评分:0.0
蓝桥杯算法提高VIP-Pascal三角 题解(c++简单啦) 摘要:解题思路:用递归算法简单水过。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int c(int x,int y){ …… 题解列表 2022年05月11日 0 点赞 0 评论 343 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:import java.io.*; /** * 从 100 循环到 1000,用三个 int 分别保存百位、十位和个位。 */ public class Main { p…… 题解列表 2022年05月11日 0 点赞 0 评论 378 浏览 评分:0.0
1017: [编程入门]完数的判断 摘要:import java.io.*; import java.util.ArrayList; public class Main { public static BufferedRea…… 题解列表 2022年05月11日 0 点赞 0 评论 325 浏览 评分:0.0
1018: [编程入门]有规律的数列求和 摘要:import java.io.*; /** * 规律:第一项的分母是 1,分子是 2,往后分母是前一项的分子,分子是前一项的分子加上分母。 */ public class Main…… 题解列表 2022年05月11日 0 点赞 0 评论 250 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int money,approach=0; while(scanf("%d",&money)!=EOF)…… 题解列表 2022年05月11日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 无 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void add_A_B( long *A, long *B ); int main(){ long A[3], B[…… 题解列表 2022年05月11日 0 点赞 0 评论 349 浏览 评分:0.0