วันพุธที่ 8 มกราคม พ.ศ. 2557

ตัวอย่างโค้ด โปรแกรมหาพื้นที่สี่เหลี่ยม

ตัวอย่างโค้ด โปรแกรมหาพื้นที่สี่เหลี่ยม

เรามาดูตัวอย่างโปรแกรมโค้ดภาษา Java โดยโปรแกรมที่จะเขียนนี้เป็นตัวอย่างของโปรแกรมหาพื้นที่สี่เหลี่ยม

ตัวอย่างโค้ด

import java.util.Scanner;
public class Main {
    public static void main(String[] args ) {
        Scanner in = new Scanner(System.in);
        System.out.print("Input width : ");
        double width = in.nextDouble();
        System.out.print("Input length : ");
        double length = in.nextDouble();
        System.out.println("-----------------------");
        System.out.println("square area : " + width * length);
    }
}

ตัวอย่างนี้เป็นการใช้ Scanner เพื่อรับค่า จากนั้นก็รับค่าความกว้าง กับความยาว จากนั้น ก็นำมาคูณกัน

ลองมาดูตัวอย่างโปรแกรมโปรแกรมหาพื้นที่สี่เหลี่ยมจตุรัสกันครับ

ตัวอย่างโค้ด


import java.util.Scanner;
public class Main {
    public static void main(String[] args ) {
        Scanner in = new Scanner(System.in);
        System.out.print("Input length : ");
        double length = in.nextDouble();
        System.out.println("-----------------------");
        System.out.println("square area : " + 2 * length);
    }
}

รู้กันดีว่าสี่เหลี่ยมจตุรัสเป็นสี่เหลี่ยมที่มีด้านเท่ากันทุกด้าน ดังนั้นตัวอย่างนี้จึงรับค่าความยาวมาแค่ค่าเดียว จากนั้นก็นำมาคูณ 2

yengo หรือ buzzcity

ไม่มีความคิดเห็น :

แสดงความคิดเห็น