简单的a+b (C语言代码) 摘要:解题思路:注意事项#include<iostream>using namespace std;int main(){ int a, b; cin >>a>>b; cout << "a+b="…… 题解列表 2018年11月11日 0 点赞 0 评论 213 浏览 评分:0.0
[竞赛入门]简单的a+b(C++) 摘要:解题思路:定义a,b,输入各值,输出a+b就可以了注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2024年07月29日 0 点赞 0 评论 105 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:最近开始温习C语言然后发现自己实在是所学甚少.... 这道题就是注意下scanf的返回值就好了,笔者因为不知道ctrl+Z的用法卡了好久。 ```c #include int main()…… 题解列表 2020年05月15日 0 点赞 0 评论 276 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:a+b注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) printf("%d\n…… 题解列表 2017年08月28日 0 点赞 0 评论 681 浏览 评分:0.0
[竞赛入门]简单的a+b (C语言代码) 摘要:解题思路:直接法注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int print[4];void…… 题解列表 2019年04月20日 0 点赞 0 评论 487 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(){ int A,B; printf("输入两个整数:\n"); scanf("%d\t%d",&A,&B); printf("A+B = %d",…… 题解列表 2018年09月03日 0 点赞 0 评论 300 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码#include "stdio.h"int main(){ int a,b; scanf("%d %d",&a,&b); printf("a+b=%d",…… 题解列表 2018年05月26日 0 点赞 0 评论 388 浏览 评分: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 评论 810 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include <stdio.h> int main() { int a,b,sum; …… 题解列表 2018年11月21日 0 点赞 0 评论 320 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项: 输入的是两个整数A ,B,并且要求这两个整数的和即A+B.参考代码: #include<stdio.h…… 题解列表 2018年02月04日 0 点赞 0 评论 579 浏览 评分:0.0