Poj/OpenJudge 1000 A+b Problem C/C++/Java

1.题意翻译:
        输入两个整数a,b (0<=a,b<=10),计算a+b的值并输出。
       其中还提到输出不能有多余的内容,即不能加多空格符号等内容,不然会报Wrong Answer
       不能使用文件,不然会报"Runtime Error"或者"Wrong Answer"
2.思路:
      这个poj用来解释如何编写代码以及提交的例子题目,我也是用此题建立我解题报告的模板。
     思路很简单,就是加起来。
3.总结:
           使用Java是需要注意一下内容:
(1)只能使用一个java类,并且类名为Main,并且里面要有一个main方法作为类的开始位置。
(2)Java使用1.5
          使用GCC或者G++提交时要注意内容
(1)main方法一定要是int返回类型。
4..代码
(1)C

 #include "stdio.h"
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return ;
}

(2)C++

 #include "iostream"
using namespace std;
int main() {
int a,b;
cin>>a>>b;
cout<<a+b;
return ;
}

(3)Java

 import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception{
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(a+b);
}
}
上一篇:SQL Server中取两个表的交集,并集和差集


下一篇:用 OneAPM Cloud Insight 监控 Docker 性能