ここにコードがあります。 ()公共の静的な無効メインが機能しない理由public static void main()は動作していませんか?
import java.io.*;
class Time
{
int a,b,c,Total;
Time()
{
int hr=0;
int sec=0;
int min=0;
}
void time(int hr, int min, int sec)
{
a=hr;
b=min;
c=sec;
}
void compute()
{
Total=a*3600+b*60+c*1;
}
void display()
{
System.out.println("Number of hours = " +a);
System.out.println("Number of minutes = " +b);
System.out.println("Number of seconds = " +c);
System.out.println("Total number of seconds = " +Total);
}
public static void main()throws IOException
{
BufferedReader pd=new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter number of hours : ");
int x=Integer.parseInt(pd.readLine());
System.out.println("Enter number of minutes : ");
int y=Integer.parseInt(pd.readLine());
System.out.println("Enter number of seconds : ");
int z=Integer.parseInt(pd.readLine());
Time obj=new Time();
obj.time(x,y,z);
obj.compute();
obj.display();
System.out.println("Thank you for using our service.");
}
}
は、誰かが私に教えていただけますか?私はコーディングを始めているので、これはばかな質問かもしれません。
'メイン(文字列[]引数)として主内部これらの引数を取得することができ:
これは必要とされ、のような1つは、Javaプログラムを実行することによって、コマンドラインからデータを読み取ることができ' –
「うまくいきません」と言うと、コンパイルや実行しようとするとどうなりますか? – halfer