設計說明:
1. 於畫面顯示[請輸入您的姓名:],並於後方輸入姓名。
2. 於畫面顯示要求輸入銅板個數,並依序要求輸入1元、5元、10元、50元硬幣數量。
3. 輸出總金額,執行結果如範例圖。
參考程式碼:
TQC+ Java 試題總整理
- import java.util.Scanner;
- public class JPA105{
- public static void main (String[] args){
- Scanner sc = new Scanner(System.in);
- int x1,x5,x10,x50,all;
- String name;
- System.out .printf("請輸入您的姓名:");
- name = sc.nextLine();
- System.out.printf("Hi, %s,請輸入您的銅板的個數:%n",name);
- System.out.printf("請輸入1元數量:");
- x1=sc.nextInt();
- System.out.printf("請輸入5元數量:");
- x5=sc.nextInt();
- System.out.printf("請輸入10元數量:");
- x10=sc.nextInt();
- System.out.printf("請輸入50元數量:");
- x50=sc.nextInt();
- all=x1*1+x5*5+x10*10+x50*50;
- System.out.printf("您的錢總共有:%d 千 %d 百 %d 十 %d 元",all/1000,all%1000/100,all%100/10,all%10);
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com