我得到這個錯誤缺少main()的錯誤
在
Bank
類未找到Main方法,請確定的主要方法爲:public static void main(String[] args)
或JavaFX應用程序類必須擴展javafx.application.Application
這是我的Bank
類
public class Bank { //Bank Class to calculate the value for infrastructure of each Bank
final int N = 9; // Equal to highest number in my CQU Student ID 12029103
int cost;
public int costPerBank(int numberOfComputers) {
// Calculate the total cost for numberOfComputers entered by the user
if (numberOfComputers == 0) { // When user enters '0' or negative values
cost=0;
}
if (numberOfComputers <= 2 && numberOfComputers >= 1) { // When user enters '1' or '2'
cost=1000;
}
if (numberOfComputers > 2 && numberOfComputers<=20) { // When user enters '3' to '20'
cost=1000+((numberOfComputers-2)*400);
}
if (numberOfComputers > 20 && numberOfComputers<=100) { // When user enters '21' to '100'
cost=1000+((numberOfComputers-2)*300);
}
if (numberOfComputers > 100) { // When user enters more than '100'
cost=numberOfComputers*200;
}
return cost;
}
}
好吧,讓您聽起來像是在嘗試運行「Bank」類......您期望做什麼?顯示的錯誤信息對我來說似乎相當清楚。 –
根據他明顯缺乏的經驗判斷,我猜他不知道需要使用Main方法來做任何事情,等等。 – Matt
這是專業人士的Q/A網站,其中您的問題是其他程序員的寶貴資源。這不是一個WhatsApp聊天。請使用「請」,「我」,「不要」等全文,而不是「plz」,「i」,「dnt」,「whr」。 – RealSkeptic