码迷,mamicode.com
首页 > 其他好文 > 详细

第二章编程练习题2.5

时间:2015-04-06 18:29:15      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.Scanner;



/**
 * 财务应用程序,计算小费
 * @author Administrator
 *
 */
public class Main3 {

    
    
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        double number = input.nextDouble();
        double rate = input.nextDouble();
        double xiaofei =number * rate /100;
        double total = number + xiaofei;
        System.out.println(xiaofei+"---"+total);
        
        
        
        
        
    }
    
}

 

第二章编程练习题2.5

标签:

原文地址:http://www.cnblogs.com/aicpcode/p/4396261.html

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