ত্রিভুজের ক্ষেত্রফল নির্ণয়ের জাভা প্রোগ্রাম লেখো / TRIANGLE নামের ক্লাস ডিক্লেয়ার করে ত্রিভুজের ক্ষেত্রফল নির্ণয়ের জাভা প্রোগ্রাম লেখো
প্রোগ্রামের সোর্স কোড-
import java.util.Scanner;
public class TRIANGLE {
public static void main(String args[]){
int height, base, area;
Scanner sc = new Scanner(System.in);
System.out.println("Enter the height of the triangle ::");
height = sc.nextInt();
System.out.println("Enter the base of the triangle ::");
base = sc.nextInt();
area = (height* base)/2;
System.out.println("Area of the triangle is ::"+area);
}
}
প্রোগ্রামটি রান করলে যে আউটপুট পাবো তা হলো:
Enter the height
of the triangle ::
14
Enter the base of
the triangle ::
5
Area of the
triangle is :: 35
পরবর্তী প্রোগ্রাম-
No comments