範例程式 |
- Ex1_8.java
/* 某學生甲有1000 元8 張,500 元4 張,100 元5 張,50 元硬幣1 個,10 元硬幣3 個, 5 元硬幣7 個,1 元硬幣9 個,試撰寫程式,計算甲有多少錢。 */ package exam; public class Ex1_8 { public static void main(String[] args) { int thousand = 1000 * 8; int five_Hundred = 500 * 4; int hundred = 100 * 5; int fifty = 50 * 1; int ten = 10 * 3; int five = 5 * 7; int one = 1 * 9; System.out .println("甲有" + (thousand + five_Hundred + hundred + fifty + ten + five + one) + "錢"); } } |
沒有留言:
張貼留言