2014年12月23日 星期二

java程式設計題目---數字處理【三位數拆解相乘】

設計一程式,提示使用者輸入一個三位數整數,印出該數值的每個位數相乘後所得乘積數值。
例如:輸入123,輸出1 x 2 x 3 = 6。


import java.util.Scanner;

public class C1 
{

 public static void main(String[] args) 
 {
  Scanner input = new Scanner(System.in);
  
  System.out.println("請輸日一個三位整數");
  int a = input.nextInt();
  
  int b = a / 100;
  int c = ( a - b * 100 ) / 10;
  int d = a - 100 * b - 10 * c;
  int e = b * c * d;  
  
  System.out.println("該數值每個位數所相乘後的質:" + e);
  
 }

}

沒有留言:

張貼留言

Go(Golang)程式語言 設定GCC

下載MSYS2:  https://www.msys2.org/ 安裝 程式開始執行後輸入: pacman -Syu y y 在安裝目錄底下找到msys2.exe,雙擊執行 輸入指令: pacman -Su pacman -S --needed base-devel mingw-...