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
Explain about the functions strcat() and strcmp()?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
How to Throw some light on the splay trees?
What is struct node in c?
What is bss in c?
while initialization of array why we use a[][2] why not a[2][]...?
What is the purpose of scanf() and printf() functions?
Explain what is the advantage of a random access file?
Explain heap and queue.
Is c call by value?
What does the && operator do in a program code?
If fflush wont work, what can I use to flush input?
Why array is used in c?
What are pointers in C? Give an example where to illustrate their significance.
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions