package TextView;
public class ImoocText {
public static void main(String[]args) {
int InOne = 15;
int InTwo = 15;
int InThree = 15;
int Out = 8;
int All = 10000;
int plus = InOne + InTwo + InThree - Out;
int Time = All / plus;
System.out.println(Time+"小时");
}
}
注意改一下包名和类名,不然没法运行