码迷,mamicode.com
首页 > 编程语言 > 详细

java 输入输出项目

时间:2016-05-03 17:51:49      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

package hellohe;
import java.util.Scanner;
/**
 * 
 * @author Administrator
 *1.导入java.util.scanner;
 *2.创建scanner对象
 */
public class hellohe {
	public static void main(String[] args){
		Scanner input=new Scanner(System.in);
		System.out.print("请输入考试成绩信息:");
		int score = input.nextInt();
		int count = 0;
		System.out.println("加分前成绩为:"+score);
		while(score<60){
			score++;
			count++;
		}
		System.out.println("加分后成绩:"+score);
		System.out.println("共加了"+count+"次!");
	}
}

  

myeclipse,断点调试,debug 

1、双击

2、debug

3、f6

 

java 输入输出项目

标签:

原文地址:http://www.cnblogs.com/hyh123/p/5455585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!