int [] num={1,2,3,4,5};
LabExercise2 pass = new LabExercise2();
for(i=0; i<num.length; i++){
System.out.print("Please Enter Your Hours: ");
BufferedReader hr = new BufferedReader(new InputStreamReader(System.in));
hour = hr.readLine();
hours = Integer.parseInt(hour);
if(hours >= 30)
{
wage = 26*hours;
totalonemonth = wage*4;
System.out.println("Total Wages for 1 week: RM"+wage);
System.out.println("Total Wages for 1 month: RM"+totalonemonth+"\n");
あなた/誰でも助けてくれますか?私はここにコードを持っていますが、質問は私がコントロール構造(totalonemonth)のすべての結果をすべて5つ追加する必要がありますが、それはうまくいきませんでした。何か間違っていますか?ループ内の制御構造
@NinaScholz行わ奥様 –