2 Star 0 Fork 0

CS-IMIS-23 / 20172320lwz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
GasMileage.java 400 Bytes
一键复制 编辑 原始数据 按行查看 历史
考一科亡一科 提交于 2018-03-20 14:24 . Hello
import java.util.Scanner;
public class GasMileage
{
public static void main(String[] args)
{
int miles;
double gallons, mpg;
Scanner scan = new Scanner(System.in);
System.out.println("Enter the number of miles:");
miles = scan.nextInt();
System.out.println("Enter the gallons of fuel used:");
gallons = scan.nextDouble();
mpg = miles/gallons;
System.out.println("Miles Per Gallon:"+ mpg);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/CS-IMIS-23/20172320lwz.git
git@gitee.com:CS-IMIS-23/20172320lwz.git
CS-IMIS-23
20172320lwz
20172320lwz
master

搜索帮助