Dashain and tihar homework
15 QBasic Programmes 1) Program to find the area of rectangle. CLS INPUT " Enter length " ; L INPUT " Enter breadth " ; B A = L * B PRINT " Area of rectangle = " ; A END 2) Program to display the area of circle. CLS INPUT " Enter radius " ; R A = 22 / 7 * R ^ 2 PRINT " Area of circle " ; A END 3) Program to find the area of square. CLS INPUT " Enter length " ; L A = L ^ 2 PRINT " Area of square = " ; A END 4) Program to find the area of triangle. CLS INPUT " Enter breadth " ; B INPUT " Enter height " ; H A = 1 / 2 * B * H PRINT " Area of triangle = " ; A END 5) Program to find the volume of cylinder. CLS INPUT " Enter radius " ; R INPUT " Enter height " ; H V = 22 / 7 * R ^ 2 * H PRINT " Volume of cylinder = " ; V END 6