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 / goloap
for (int i=1; i<8; i++)
for (int j=i; j<9; j++)
for (int k=j; k< 10; k++)
printf("%d\n", i*100+j*10+k);
| Is This Answer Correct ? | 6 Yes | 18 No |
Post New Answer View All Answers
How are structure passing and returning implemented?
Differentiate between #include<...> and #include '...'
What is difference between arrays and pointers?
What are keywords in c with examples?
List some applications of c programming language?
What does 4d mean in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is difference between scanf and gets?
How can I get back to the interactive keyboard if stdin is redirected?
Explain is it valid to address one element beyond the end of an array?
Write the control statements in C language
Tell me with an example the self-referential structure?
How many loops are there in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.