iT邦幫忙

0

ITSA Basic 題目2 英哩轉公里 (Java)

  • 分享至 

  • xImage
  •  

題目:英哩轉公里
說明:輸入一個英哩整數,並轉成公里顯示,並且格式為顯示一個小數。

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		while(sc.hasNext()) {
			int input = sc.nextInt();
			System.out.printf("%.1f\n", input * 1.6);
		}
	}

}

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言