1-
प्रश्न13 निम्नलिखित में से किसी 1 विषय पर दिए गए संकेत बिंदुओं के आधार पर किसी एक विषय पर
80 से 100 शब्दों में अनुच्छेद लिखिए।
i) प्रकृति की रक्षा, मानव की सुरक्षा
संकेत बिंदु:
मनुष्य प्रकृति का अंग
प्रकृति से खिलवाड़
प्रकृति की रक्षा मानव जाति का कर्तव्य
Answers
Explanation:
In this tutorial we will learn how to calculate area of Square. Following are the two ways to do it:
1) Program 1: Prompting user for entering the side of the square
2) Program 2: Side of the square is specified in the program’ s source code.
Program 1:
/**
* @author: BeginnersBook.com
* @description: Program to Calculate Area of square.Program
* will prompt user for entering the side of the square.
*/
import java.util.Scanner;
class SquareAreaDemo {
public static void main (String[] args)
{
System.out.println("Enter Side of Square:");
//Capture the user's input
Scanner scanner = new Scanner(System.in);
//Storing the captured value in a variable
double side = scanner.nextDouble();
//Area of Square = side*side
double area = side*side;
System.out.println("Area of Square is: "+area);
}
}