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

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

筛选

1001-1050难题

摘要:解题思路:5.8#include<stdio.h>main(){ int n, num, n1, n2, n3, n4, n5; scanf("%d",&n); num = (n - 1 ) / 10……

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

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

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

摘要:解题思路:注意事项:参考代码:void main(){    int a,b;    printf("请输入数字:");    scanf("%d",&a);    printf("请输入数字:");……

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

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

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

摘要:解题思路:参考答案主要就是这一句while(~scanf("%d%d", &a, &b)),在while循环中使用scanf()意思是取返回值(即正确录入的数据个数),至于“~”意思意思是按位取反,当……

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

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b){   ……

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

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

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

摘要:解题思路:不用输入!不用输入!不用输入!注意事项:重要的事情说三遍!!!参考代码://直接提交……

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

摘要:解题思路:注意事项:参考代码:#include "stdio.h"#define N 100int main(){int a,b;printf("please input 2 numbers:\n")……