- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我制作了一个程序,根据多种因素计算机票费用我将在下面发布我遇到的问题
Create a program that given a number of tickets (maximum of 10),
the type of ticket (return, one way), the passenger type (under 10, under 16,
student, over 60, other), the selected route, and the starting and finishing
stops (in the form of a number where n denotes stopn ),
calculates the total cost for the journey.
The cost of each ticket should be calculated as follows:
• The cost per mile is 50p;
• Under 10 travel free when accompanied by an adult;
otherwise, a discount of 75% is applied;
• Under 16 get a 50% discount;
• Students get a 25% discount;
• Over 60’s get a 60% discount.
Train routes should be expressed in the format:
int [n] route = {stop2 , stop3 , ... stopNPlusOne};
Example:
int [4] route1 = {3, 5, 2, 6};
denotes a route with 5 stops:
the distance between stop one and two is 3 miles,
between stop two and three is 5 miles,
between stop three and four is 2,
and between stop four and five is 6.
我的代码如下
Scanner input = new Scanner(System.in);
System.out.println("Enter the number of Tickets (Max 10): ");
int numberOfTickets = input.nextInt();
if (numberOfTickets > 10) {
System.out.println("Please choose less than 10 tickets");
} else {
double cost = route();
double totalCost = (cost * numberOfTickets);
System.out.println("");
System.out.printf("Your total cost is:", totalCost);
}
}
// DECLARE A NEW METHOD THAT CALCULATES THE DISTANCES TRAVELLED
public static double route() {
Scanner input = new Scanner(System.in);
int[] route = { 7, 12, 13, 17, 22, 26 }; // miles between each stop
System.out.println("Enter the first station number(0 - 5): ");
int firstStation = input.nextInt();
System.out.println("Enter the last station number(0 - 5): ");
int lastStation = input.nextInt();
int totalMiles = 0;
for (int i = firstStation; i < lastStation; i++) {
totalMiles = totalMiles + route[i]; // Total miles
}
System.out.println(totalMiles);
double cost = totalMiles * 0.5; // (* 0.5) because it's 50p per mile.
System.out.println("The initial cost is £" + cost);
System.out.println("Please enter your age");
int age = input.nextInt();
double totalCost = 0;
int adults = 0;
return adults;
{
{
if ((age < 10) && (age > 0)) {
cost = (cost * 0.25);
} else if ((age < 16) && (age >= 10)) {
cost = (cost * 0.5);
} else if (age > 60) {
cost = (cost * 0.4);
}
System.out.println("Are you a student, if yes enter 1 if not enter 2");
int studentPass = input.nextInt();
boolean Student = false;
if (studentPass == 1)
{
Student = true;
}
if (studentPass == 2) {
adults++;
}
return cost;
}
}
}
}
}
问题是最后一个花括号有错误,所以当我删除它时,从 return adults 到 down 的所有内容都被认为是无法访问的代码。
对于问题中的大量文字表示歉意。顺便说一句,我在 Java 中。
最佳答案
问题是您在同一个函数中有多个返回值。当 return 执行时,函数退出意味着下面的代码将永远无法运行,因此无法访问。所以在这个:
public int function(){
value = 0
//do stuff
return value
//do more things
}
“do more things: 将永远无法运行,因为函数一遇到返回值
就停止运行。这段代码被称为不可访问。 将你的代码放在多个函数中,每个函数只有一个返回值,然后从你的主函数或任何你想在必要时使用它们的地方调用这些函数
关于java - 无法访问的代码,编译错误恶性循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27049059/
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 4 年前。 Improv
PowerShell Web Access 允许您通过 Web 浏览器运行 PowerShell cmdlet。它显示了一个基于 Web 的控制台窗口。 有没有办法运行 cmdlet 而无需在控制台窗
我尝试在无需用户登录的情况下访问 Sharepoint 文件。 我可以通过以下任一方式获取访问 token 方法一: var client = new RestClient("https://logi
我目前正在尝试通过 Chrome 扩展程序访问 Google 服务。我的理解是,对于 JS 应用程序,Google 首选的身份验证机制是 OAuth。我的应用目前已成功通过 OAuth 向服务进行身份
假设我有纯抽象类 IHandler 和派生自它的类: class IHandler { public: virtual int process_input(char input) = 0; };
我有一个带有 ThymeLeaf 和 Dojo 的 Spring 应用程序,这给我带来了问题。当我从我的 HTML 文件中引用 CSS 文件时,它们在 Firebug 中显示为中止。但是,当我通过在地
这个问题已经有答案了: JavaScript property access: dot notation vs. brackets? (17 个回答) 已关闭 6 年前。 为什么这不起作用? func
我想将所有流量重定向到 https,只有 robot.txt 应该可以通过 http 访问。 是否可以为 robot.txt 文件创建异常(exception)? 我的 .htaccess 文件: R
我遇到了 LinkedIn OAuth2: "Unable to verify access token" 中描述的相同问题;但是,那里描述的解决方案并不能解决我的问题。 我能够成功请求访问 toke
问题 我有一个暴露给 *:8080 的 Docker 服务容器. 我无法通过 localhost:8080 访问容器. Chrome /curl无限期挂断。 但是如果我使用任何其他本地IP,我就可以访
我正在使用 Google 的 Oauth 2.0 来获取用户的 access_token,但我不知道如何将它与 imaplib 一起使用来访问收件箱。 最佳答案 下面是带有 oauth 2.0 的 I
我正在做 docker 入门指南:https://docs.docker.com/get-started/part3/#recap-and-cheat-sheet-optional docker-co
我正在尝试使用静态 IP 在 AKS 上创建一个 Web 应用程序,自然找到了一个带有 Nginx ingress controller in Azure's documentation 的解决方案。
这是我在名为 foo.js 的文件中的代码。 console.log('module.exports:', module.exports) console.log('module.id:', modu
我试图理解访问键。我读过https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-se
我正在使用 MGTwitterEngine"将 twitter 集成到我的应用程序中。它在 iOS 4.2 上运行良好。当我尝试从任何 iOS 5 设备访问 twitter 时,我遇到了身份验证 to
我试图理解访问键。我读过https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-se
我正在使用以下 API 列出我的 Facebook 好友。 https://graph.facebook.com/me/friends?access_token= ??? 我想知道访问 token 过
401 Unauthorized - Show headers - { "error": { "errors": [ { "domain": "global", "reas
我已经将我的 django 应用程序部署到 heroku 并使用 Amazon s3 存储桶存储静态文件,我发现从 s3 存储桶到 heroku 获取数据没有问题。但是,当我测试查看内容存储位置时,除
我是一名优秀的程序员,十分优秀!