[竞赛入门]简单的a+b(带解释) 摘要:这段代码是用C++编写的,它使用while循环来计算并输出变量a和b的和。 解析: 1. 首先,我们需要包含iostream库,以便使用cout和cin进行输入和输出。 2. 然后,我们定义…… 题解列表 2024年02月11日 0 点赞 0 评论 119 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要: ```c #include int main() { int a, b; while (scanf("%d %d", &a, &b) == 2) …… 题解列表 2020年04月22日 0 点赞 0 评论 328 浏览 评分:0.0
SHIYI:简单的a+b (C语言代码) 摘要:解题思路:参考答案主要就是这一句while(~scanf("%d%d", &a, &b)),在while循环中使用scanf()意思是取返回值(即正确录入的数据个数),至于“~”意思意思是按位取反,当…… 题解列表 2018年01月04日 1 点赞 0 评论 1024 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b)cout…… 题解列表 2024年09月01日 0 点赞 0 评论 168 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d",&a); scanf("%d",&b); c=a+b; pri…… 题解列表 2017年11月06日 1 点赞 0 评论 629 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:void main(){ int a,b; printf("请输入数字:"); scanf("%d",&a); printf("请输入数字:");…… 题解列表 2018年01月17日 0 点赞 0 评论 630 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:1.注意实现的是a与b相加的功能注意事项:1.在输入函数scanf需要注意后面要有取地址符参考代码:#include<stdio.h>int main(){ int a,b; int…… 题解列表 2017年09月24日 0 点赞 0 评论 741 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void main(){ int a,b; printf("请输入两个数来求其和:"); while(scanf("…… 题解列表 2018年06月09日 0 点赞 0 评论 430 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:## 直接提交即可!! 下面是凑字数的 ```c #include int main() { int a,b; while(~scanf("%d%d", &a, &b…… 题解列表 2020年02月24日 0 点赞 0 评论 288 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;printf("请输入需要输入的两个数\n");scanf("%d%d\n",&a,&b);c…… 题解列表 2017年11月17日 1 点赞 1 评论 480 浏览 评分:0.0