#include<stdio.h> 
#include<conio.h> 
void main() 
{ 
float s,a,p; 
clrscr(); 
printf(“enter the s value:\n”); 
scanf(“%f”,&s); 
a=s*s; 
p=4*s; 
printf(“area=%f\n perimeter=%f\n”,a,p); 
getch(); 
} 
Output: 
enter the s value: 
5 
area=25.000000 
perimeter=20.000000 
No comments:
Post a Comment