Write a program to enter the sides of a rectangle and calculate its perimeter
Answers
Answered by
4
import java.util.*;
public class Perimeter
{
public static void main(String args[])
{
Scanner in=new Scanner(System.in);
int a,b,p;
System.out.println("Enter the sides of the rectangle");
a=in.nextInt();
b=in.nextInt();
p=2*(a+b);
System.out.println("The perimeter of the rectangle is"+p);
}
}
Answered by
3
#include ( studio.h)
#include (conio.h)
void main
{
int a,b,p=0;
printf("enter side of rectangle a and b");
scanf(%d%d,"&a,&b");
p = 2*a + 2*b ;
printf ("Enter perimeter");
Scanf( "%d,&p");
getch ( );
}
Similar questions
India Languages,
5 months ago
Accountancy,
5 months ago
Math,
5 months ago
English,
11 months ago
Physics,
11 months ago
Physics,
1 year ago
Science,
1 year ago