มาดูตัวอย่างโค้ดโปรแกรมหาพื้นที่สามเหลี่ยมกันครับ
ตัวอย่างโค้ด
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 height : ");
double height = in.nextDouble();
System.out.println("-----------------------");
System.out.println("The triangular area : " + 0.5 * width * height);
}
}
ตัวอย่างนี้รับค่าจากแป้นพิมพ์ ด้วย Scanner จากนั้นรับค่ามาสองค่านั่นคือ ความกว้าง กับความสูง เนื่องจากสูตรของพื้นที่สามเหลี่ยมคือ (0.5 * ฐาน * สูง) จากนั้นก็แสดงออกมาทางหน้าจอ
ไม่มีความคิดเห็น :
แสดงความคิดเห็น