Qn: Check given number is perfect square or not
-By Jansi, Last Update On 1st July,2019 12:01 am
கொடுக்கப்பட்ட number-க்கு square root எடுத்து, அந்த number-ஐ இரண்டு முறை பெருக்கினால்(multiply) மீண்டும் enter செய்யப்பட்ட number கிடைக்கவேண்டும். அதுவே perfect square number. squareroot எடுபதர்க்கு sqrt() என்ற function பயன்படுத்தவேண்டும்.
Check Perfect Square or not
#include<stdio.h>
#include<conio.h>
int main(){
int n,sr;
printf("Enter the number to check perfect square: ");
scanf("%d",&n);
sr=sqrt(n);
if(sr*sr == n){
printf("Given number is Perfect Square. That number is %d",sr);
}else{
printf("Given number is not Perfect Square.);
}
}
Output:
Enter the number to check perfect square: 2500
This is perfect square. That number is 50
Enter the number to check perfect square: 2500
This is perfect square. That number is 50
Print Square Number
#include<stdio.h>
#include<conio.h>
int main(){
int n,sr;
printf("Enter the number to print square number: ");
scanf("%d",&n);
sr=n*n;
printf("Square number is %d",sr);
}
Output:
Enter the number to print square number: 12
Square number is 144
Enter the number to print square number: 12
Square number is 144
Pgcomments
இது பற்றிய தங்களின் கருத்துகளை இங்கே பதிவிடுங்கள் . இது பயனுள்ளதாக விரும்பினால் மற்றவர்களுக்கும் இதை share செய்யுங்கள்.
Comments