1000: A+B Problem 时间限制:1 Sec 内存限制:256 MB 提交:4870 解决:3047 [提交] [状态] [讨论版] [命题人:外部导入] 题目描述 用来适应环境的题目,自然比较简单些。 计算2个整数的和。这两个整数都在1到1000之间。输入 输入只有一行,包括2个整数a, b。之间用一个空格分开。
1000 ( A + B Problem ) 1、输入问题。 之前都是用C和C++做OJ的,输入输出很方便,代码很短。 2、杭电OJ上的类名好像要求是Main,总之我第一次没成功,看了大家的讨论一改就AC了。 1importjava.util.Scanner;2publicclassMain {34publicstaticvoidmain(String[] args) {5inta,b;6Scanner in =newScanner(S...
using namespace std; int main() { int inputA,inputB=0; while(cin>>inputA>>inputB) { cout<<inputA+inputB<<endl; } return 0; }
Calculate a+b 1. 输入 Two integer a,b (0<=a,b<=10) 1. 输出 Output a+b 1. 样例输入 1 2 样例输出 3 解题思路: 1.首先定义两个整形(int)变量。 2.然后用scanf给这两个变量赋值。 3.最后打印输出a+b就完成了两个数相加求和。 #include <stdio.h> intmain() {inta,b; scanf("%d %d",...
HDU 1000 A + B Problem(指针版) A + B Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 654986 Accepted Submission(s): 204210 Problem Description CalculateA + B. Input
POJ 1000 A+B Problem Description Calculate a+b Input Two integer a,b (0<=a,b<=10) Output Output a+b Sample Input 1 2 Sample Output 3 代码解读 #include <stdio.h> intmain() { inta,b; scanf("%d %d",&a,&b); printf("%d\n",a+b);...
题目传送门:http://poj.org/problem?id=1000 tigeryyf 英雄豪杰 10 ---注:此贴为解题报告之样例---善良的POJ为新手准备了这样一道水题来让大家熟悉POJ的环境。如果这道题你没有AC的话。。。下面公布Pascal代码:var a,b:integer;begin readln(a,b); write(a+b);end. tigeryyf 英雄豪杰 10 补思路...
void main(){ int a,b,c;scanf("%d","%d",&a,&b);c=a+b;print("%d",c);} include<stdio.h> main(){ int a;scanf("%d",&a);if(a%2=1)print(“no”);else print("yes");} include<stdio.h> main(){ int a,b;b=0;if(a=0;a<300;a++){ if(a%2==1) b+...
问题链接(https://vjudge.net/problem/hdu-1000?tdsourcetag=s_pctim_aiomsg) 问题简述:实现简单的加法运算,对输入的A,B值进行加法计算并输出结果 程序分析:由于题目要求对多行数据进行计算,所以循环体的条件为cin>>a>>b;即当输入Ctrl+z时停止程序; ...
HDOJ 1000 A + B Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 513689 Accepted Submission(s): 162876 Problem Description Calculate A + B. Input Each line will contain two integers A and B. Process to end of file....