Өгөгдсөн тооны хөрвүүлсэн тоог ол.

#include<conio.h>
#include<stdio.h>
#define MAX 10
int main(){
char num[MAX];
int i=0,j, flag=0;
printf("Nemeh buhel too oruulna uu:");
scanf("%s",num);
while(num[i]){
if(num[i] < 48 || num[i] > 57){
printf("Buruu buhel too baina");
return 0;
}
i++;
}
printf("hurwusun too ");
for(j=i-1;j>=0;j--)
if(flag==0 && num[j] ==48){
}
else{
printf("%c",num[j]);
flag =1;
}
getch();
return 0;

Comments