1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:其实直接提交就好,源代码就是1000的题解参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2023年11月03日 0 点赞 0 评论 85 浏览 评分:0.0
c代码记录之简单a+b求和 摘要:解题思路:注意事项:本题唯一难点就是如何输入多组数据,这里利用scanf的返回值来输入多组数据参考代码:#includeint main() { int a,b; while(scanf("…… 题解列表 2023年10月31日 0 点赞 0 评论 80 浏览 评分:0.0
加减法发aDXASD 摘要:解题思路:嬲完吴妞随便写注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))print…… 题解列表 2023年10月13日 0 点赞 0 评论 80 浏览 评分:0.0
软件更新通知 摘要:2.1.4阅读界面增加多个字体选择,加入背景颜色调色盘,优化少量BUG做了一个软件,但是懒得写后端接口了,软件更新的通知就放在这里了,这里放置版本号,软件上获取这里的版本号,如果与当前不一致就记为更新…… 题解列表 2023年09月21日 0 点赞 0 评论 463 浏览 评分:9.9
1000: [竞赛入门]简单的a+b (python代码) 摘要: while True: #while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用try except语句块捕获…… 题解列表 2023年07月09日 0 点赞 0 评论 356 浏览 评分:8.0
简单的a+b (C语言代码)(对~字符的一些解释) 摘要:解题思路: 难点也就在于多次输入,也就是写个循环,还有循环终止的条件 ```c #include int main() { int a,b; while(~scanf("…… 题解列表 2023年07月08日 0 点赞 0 评论 132 浏览 评分:9.9
一看就懂,简单解决 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a, b; while (scanf("%d%d", &a, &b) == 2) { …… 题解列表 2023年07月06日 0 点赞 0 评论 163 浏览 评分:9.9
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a=0,b=0; while(~scanf("%d%d", &a, &b)) //下面有…… 题解列表 2023年06月20日 0 点赞 0 评论 73 浏览 评分:0.0
a+b的最简方法 摘要:/这题是一道非常经典的题目,是编程初学者的必会题。(大佬请屏蔽)//首先头文件、名字空间我就不说了,这是得会背的内容,如下:#include<bits/stdc++.h>//这是一个万能头文件,可以背…… 题解列表 2023年06月18日 1 点赞 1 评论 170 浏览 评分:9.9
题目 1000: [竞赛入门]简单的a+b解答 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) cou…… 题解列表 2023年05月18日 0 点赞 0 评论 80 浏览 评分:0.0