Өгөгдсөн 2 натурал тооны аль нь олон цифртэйг ол.

‪#‎include‬<stdio.h>
#include<conio.h>
int tsifr(long int y)
{int s=0;
long int x=y;
while(x!=0){s=s+1;
x=x/10;}
printf("\n%d toonii tsifriin too ni:%d",y,s);
return s;
}
void main()
{long int n,m;
int a,b;
printf("\n2 toog oruulna uu?"); scanf("%d%d",&n,&m);
a=tsifr(n); b=tsifr(m);
if(a==b)printf("\n2 too tentsuu toonii tsifrtei");
if(a>b)printf("\n%d too olon tsifrtei",n);
else printf("\n%d too olon tsifrtei",m);
getch();
}

Comments