Thursday 26 January 2012

Write a C program to find a peculiar two digit number which is three times the sum of its digits

//    example:- 27
//    =3(2+7)
//    =3(9)
//    =27

#include<stdio.h>
#include<conio.h>
void main()
{
int n,sum=0,rem,temp;
clrscr();
printf("Enter any two digit number:");
scanf("%d",&n);
for(temp=n;temp>0;temp=temp/10)
{
rem=temp%10;
sum=sum+rem;
}
if(n==(sum*3))
printf("\nIts a Peculiar two digit number");
else
printf("\nNot a Peculiar two digit number");
getch();
}

1 comment: