the number 138 is called well ordered number because the
three digits in the number (1,3,8) increase from left to right
(1<3<8). the number 365 is not well ordered coz 6 is larger
than 5.
write a program that wull find and display all possible
three digit well ordered numbers.
sample:
123,124,125,126,127,128,129,134
,135,136,137,138,139,145,146,147
148
149,156.......789
Answer Posted / karthick_int
#include<stdio.h>
void main()
{
int n,i,j,k,m;
clrscr();
printf("Entr d no:");
scanf("%d",&n);
i=n%10;j=n/10;
k=j%10;m=j/10;
printf("The values are:%d\t%d\t%d\t",i,k,m);
if((i>k)&&(i>m))
{
if(k>m)
{
printf("Well ordered");
}
}
else
{
printf("not");
}
getch();
}
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
Write a code to remove duplicates in a string.
Do pointers need to be initialized?
What are the storage classes in C?
What is null in c?
Tell me when is a void pointer used?
When should the volatile modifier be used?
Explain how does free() know explain how much memory to release?
please explain every phase in the "SDLC" in the dotnet.
When should a far pointer be used?
what is stack , heap ,code segment,and data segment
Explain how can I convert a string to a number?
What is the use of bit field?
When should a type cast not be used?
What is the use of extern in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above