2 Star 0 Fork 0

CS-IMIS-23 / 20172333严域俊

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
GasMileag.java 608 Bytes
一键复制 编辑 原始数据 按行查看 历史
竹叶青林 提交于 2018-03-20 15:43 . YanYuJun
import java.util.Scanner;
public class GasMileag
{
//---------------------------------------------------------
//Calculates fuel efficiency based on values entered by the
// user.
//
//---------------------------------------------------------
public static void main(String[] args)
{
int miles;
double gallons, mpg;
Scanner scan = new Scanner(System.in);
System.out.print("Enter the number of miles: ");
miles = scan.nextInt();
System.out.print("Enter the gallons of fuel used: ");
gallons = scan.nextDouble();
mpg = miles / gallons;
System.out.println("Miles Per Gallon: " + mpg);
}
}
Java
1
https://gitee.com/CS-IMIS-23/20172333YanYuJun.git
git@gitee.com:CS-IMIS-23/20172333YanYuJun.git
CS-IMIS-23
20172333YanYuJun
20172333严域俊
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891