close

輸入一個不為0之整數,求此數之絕對值:


import java.util.Scanner;
public class test {
    public static void main(String[] args) {
        Scanner scn = new Scanner(System.in);
        System.out.println("請輸入一個整數:");
        int a = scn.nextInt();
        scn.close();
        // 如果a大於0,為正整數,輸出a,小於0,輸出-a(負負得正)
        if (a > 0) {
            System.out.println("絕對值為 " + a);
        } else {
            System.out.println("絕對值為 "+(-a));
        }
    }
}

 

輸出結果:


請輸入一個整數:
-2
絕對值為 2

arrow
arrow
    創作者介紹
    創作者 ALVIN 的頭像
    ALVIN

    全力以赴每一天

    ALVIN 發表在 痞客邦 留言(0) 人氣()