题解 1000: [竞赛入门]简单的a+b

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){  int a,b,c;  a=1;  b=1;  c=a+b;  scanf("c=%d",c); }……

Java简单的a+b

摘要:Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int a=sc.nextInt(); int b=sc.nextInt(); ……

"简单的a+b"题解

摘要:解题思路:无注意事项:此题是求多组数据,可用while(cin>>a>>b)来输入每一组数据;为了格式,所以得在输出后加上\n转义字符或endl来换行参考代码:#include<iostream>us……

简单的a+b (C语言代码)

摘要:解题思路加减运算,不会来找我,我教你;使用尽可能少的代码解决问题!注意事项:加减运算!参考代码:main(a,b){while(scanf("%d%d",&a,&b)==2){printf("%d\n……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%f,%f",&a,&b);c=a+b;printf("%f",c);retur……

[竞赛入门]简单的a+b

摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d\n",a+b); ……