HDU1000

原题链接http://acm.hdu.edu.cn/showproblem.php?pid=1000

题目意思:每次输入两个数a,b,输出a+b的和。

基础JAVA在HDUOJ上的输入输出

import java.util.Scanner;

public class Main{

 private static Scanner me;

 public static void main(String[] args) {
  me = new Scanner(System.in);
  while(me.hasNextInt())
  {
   int a = me.nextInt();
   int b = me.nextInt();
   System.out.println(a + b);
  }
 }
}


其中要注意两点。一:在第二行代码public class Main是代表你保存的文件名,我们在提交HDOJ时,要把你命名的名称改成Main,也就是第二行要写成public class Main这个形式。至于为什么自行百度。。。。

二:这是个多输入问题,所以,输入一组数据是不能结束的,很显然根据我们C基础,我们想到用while循环,但是该怎么处理呢,嘿嘿,wlxsq很理所当然的顾名思义的理解成while(有下一个输入){} 对不对。。。

呵呵,这是我的第一篇博文,希望能够对刚学JAVA的同胞们有所help。。。。~_~

你可能感兴趣的:(JAVA)