ติดตั้ง Steam
เข้าสู่ระบบ
|
ภาษา
简体中文 (จีนตัวย่อ)
繁體中文 (จีนตัวเต็ม)
日本語 (ญี่ปุ่น)
한국어 (เกาหลี)
български (บัลแกเรีย)
Čeština (เช็ก)
Dansk (เดนมาร์ก)
Deutsch (เยอรมัน)
English (อังกฤษ)
Español - España (สเปน)
Español - Latinoamérica (สเปน - ลาตินอเมริกา)
Ελληνικά (กรีก)
Français (ฝรั่งเศส)
Italiano (อิตาลี)
Bahasa Indonesia (อินโดนีเซีย)
Magyar (ฮังการี)
Nederlands (ดัตช์)
Norsk (นอร์เวย์)
Polski (โปแลนด์)
Português (โปรตุเกส - โปรตุเกส)
Português - Brasil (โปรตุเกส - บราซิล)
Română (โรมาเนีย)
Русский (รัสเซีย)
Suomi (ฟินแลนด์)
Svenska (สวีเดน)
Türkçe (ตุรกี)
Tiếng Việt (เวียดนาม)
Українська (ยูเครน)
รายงานปัญหาเกี่ยวกับการแปลภาษา
SE1011
Fall 2009
9/16/2009
*/
package glatzela;
import java.util.Scanner;
public class Lab1 {
/**
* @param args
*/
public static void main(String[] args) {
Scanner in;
in = new Scanner(System.in);
System.out.print("Enter the number of hours worked per week:");
int hoursWorked = in.nextInt();
System.out.print("Enter the number of weeks of vaction taken:");
int vacationWeeks = in.nextInt();
do {
System.out.print("You fool tell me the real amount of vacation weeks you took next time.");
}while (vacationWeeks > 52);
System.out.print("Enter your hourly wage(in dollars):");
double hourlyWage = in.nextDouble();
double yearlyEarnings = hoursWorked * (52- vacationWeeks);
System.out.print("Yearly Earnings=");
System.out.print(yearlyEarnings);
}
}
SE1011
Fall 2009
9/16/2009
*/
package glatzela;
import java.util.Scanner;
public class Lab1 {
/**
* @param args
*/
public static void main(String[] args) {
Scanner in;
in = new Scanner(System.in);
System.out.print("Enter the numbe of hours worked per week:");
int hoursWorked = in.nextInt();
System.out.print("Enter the number of weeks of vaction taken:");
int vacationWeeks = in.nextInt();
System.out.print("Enter your hourly wage(in dollars):");
double hourlyWage = in.nextDouble();
double yearlyEarnings = hoursWorked * (52- vacationWeeks);
System.out.print("Yearly Earnings=");
System.out.print(yearlyEarnings);
}
}