LikeWater - 1090: A+B for Input-Output Practice (VI) 摘要:```cpp #include #include using namespace std; // Your task is to Calculate the sum of some integ…… 题解列表 2023年02月27日 0 点赞 1 评论 234 浏览 评分:9.9
LikeWater - 1091: A+B for Input-Output Practice (VII) 摘要:```cpp #include #include using namespace std; // Your task is to Calculate the sum of some integ…… 题解列表 2023年02月27日 0 点赞 1 评论 200 浏览 评分:9.9
LikeWater - 1092: A+B for Input-Output Practice 摘要:```cpp #include #include using namespace std; // Your task is to Calculate the sum of some integ…… 题解列表 2023年02月27日 0 点赞 1 评论 183 浏览 评分:9.9
LikeWater - 1113: C语言考试练习题_保留字母 摘要:```cpp #include using namespace std; // 编一个程序,输入一个字符串,将组成字符串的所有非英文字母的字符删除后输出。 int main() { …… 题解列表 2023年02月27日 0 点赞 1 评论 140 浏览 评分:9.9
蓝桥杯算法提高VIP-笨小猴 摘要:这题不是特别难,主要最后的质数判断,1和0都不是质数要注意 写到一半有点乱,做了个方法 方法的用处就是判断这个字符a是否在这个字符数组sl里面 import java.util.Scann…… 题解列表 2023年02月27日 0 点赞 0 评论 356 浏览 评分:9.9
1004: [递归]母牛的故事(超级简洁) 摘要: import java.util.*; public class 母牛牛的姑息 { public static void main(String[] args) { Scanner s…… 题解列表 2023年02月27日 0 点赞 0 评论 523 浏览 评分:9.9
题解 2769: 计算并联电阻的阻值 摘要:解题思路:注意事项 :注意看清题目,用浮点数除法参考代码:#include<stdio.h>int main(){ float a, b; float r = 0; scanf("%f %f", &…… 题解列表 2023年02月27日 0 点赞 1 评论 765 浏览 评分:9.9
LikeWater - 1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数(史上最短代码!!!) 摘要:#####这也是一个有趣的题目,很多人格式错误就是因为第三个数后面输入了空格但是它答案里面最后没有空格,导致很多大佬栽跟头,我在看到很多人格式错误了,敏锐发现了这个问题哈哈哈哈哈:sunglasses…… 题解列表 2023年02月27日 0 点赞 1 评论 212 浏览 评分:9.9
LikeWater - 1480: 模拟计算器 摘要:####这个题简单题,注意题目要求的是整数,如果用浮点数就会报错,所以老老实实用整数就行了,还有switch语句,注意要加break,不加break就会持续执行,这点运用我在 《题目 1049: [编…… 题解列表 2023年02月27日 0 点赞 1 评论 587 浏览 评分:9.9
LikeWater - 1481: 蓝桥杯算法提高VIP-剪刀石头布 摘要:####有趣的代码,写起来很有意思,enum类型我比较少用,但是用来写一些小游戏还是挺有趣的,写起来就像真的再写一款很有趣的游戏一样,哈哈哈哈! ```cpp #include using …… 题解列表 2023年02月27日 0 点赞 1 评论 329 浏览 评分:9.9