简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; a=1; b=1; c=a+b; scanf("c=%d",c); }…… 题解列表 2017年07月29日 4 点赞 0 评论 1213 浏览 评分:0.0
Java简单的a+b 摘要:Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int a=sc.nextInt(); int b=sc.nextInt(); …… 题解列表 2024年08月10日 0 点赞 0 评论 165 浏览 评分:0.0
"简单的a+b"题解 摘要:解题思路:无注意事项:此题是求多组数据,可用while(cin>>a>>b)来输入每一组数据;为了格式,所以得在输出后加上\n转义字符或endl来换行参考代码:#include<iostream>us…… 题解列表 2022年09月11日 0 点赞 0 评论 121 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:题目容易弄错,不只是一次的输入和输出,要注意审题 #include int main() { int a,b; while(~scanf("%d%d", &a, &b)) …… 题解列表 2020年01月31日 0 点赞 0 评论 344 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(){int a,b,c;scanf("%d%d",&a,&b);c=a+b;printf("%d\n",c);return 0;}…… 题解列表 2018年11月13日 0 点赞 0 评论 278 浏览 评分:0.0
编写题解 1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int A,B,c; c=pow(2,10); while(~scanf("%d…… 题解列表 2022年11月21日 0 点赞 0 评论 98 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路加减运算,不会来找我,我教你;使用尽可能少的代码解决问题!注意事项:加减运算!参考代码:main(a,b){while(scanf("%d%d",&a,&b)==2){printf("%d\n…… 题解列表 2018年07月05日 0 点赞 0 评论 411 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%f,%f",&a,&b);c=a+b;printf("%f",c);retur…… 题解列表 2017年10月18日 0 点赞 0 评论 546 浏览 评分:0.0
[竞赛入门]简单的a+b 摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d\n",a+b); …… 题解列表 2021年11月14日 0 点赞 0 评论 127 浏览 评分:0.0