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

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

筛选

直接点提交 不要问

摘要:解题思路:注意事项:参考代码: zhi          jie        dian        ti        jiao……

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

摘要:解题思路:需要两个加数,所以申明两个变量。因为需要用户输入,所以用scanf函数。注意事项:声明变量后要初始化。参考代码:#include<stdio.h>int main(void){ int a,……

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

摘要:解题思路:注意事项:参考代码:include<stdio.h>int main(){    int a,b;    sacnf("%d %d",&a,&b);    printf("%d %d",a,……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    while(~scanf("%d%d", &a, &b))printf("%d\n……

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

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

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

摘要:解题思路:注意事项:参考代码:#include  <stdio.h>                   int  main(){              int  a,  b;          ……

note an easy problem2

摘要:哈哈哈#includeint main(){    int strcpy_my(int n, char c[], int m);    int n, m;    char a[100];    sca……

简单的a+b (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class C1000 { public static void main(String[] args) ……

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

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

[竞赛入门]简单的a+b (C语言代码)

摘要:解题思路:利用scanf()函数的返回值,实现每接收两个数,就输出他们的和。注意事项:本题注意scanf函数的返回值就行了,有n个变量接收到了相应的值,那么scanf()函数就返回n。参考代码:#in……