Ex 11) Devise a flowchart to receive a positive integer and output each digit, from right to left, after it has been multiplied by 2. For instance, if the input is 692, the program should output 4, 18, 12. As another example, if the number is 135429 the program should out put 18, 4, 8, 10, 6, and 2. Ex 12) Devise a flowchart to receive a positive number and output "yes" if each of its digits is in a non-decreasing order; otherwise, output "no". For instance, if the input is 123558, the program should output "yes", because if you read the digits from left to right, the values of the digits never decrease. But, if the input is 632, the program should output "no" because 3 is not larger than 6 and 2 is not larger than 3.
Please help me with these questions. I am having trouble understanding what to do
Please provide preconditions and postconditions for each solution you provide.
IMPORTANT: In Ex 9 and 10, you are not allowed to use strings. Instead, you should work with numbers and mathematical operators, such as division, remainder, etc.
Ex 11) Devise a flowchart to receive a positive integer and output each digit, from right to left, after it has been multiplied by 2. For instance, if the input is 692, the program should output 4, 18, 12. As another example, if the number is 135429 the program should out put 18, 4, 8, 10, 6, and 2.
Ex 12) Devise a flowchart to receive a positive number and output "yes" if each of its digits is in a non-decreasing order; otherwise, output "no". For instance, if the input is 123558, the program should output "yes", because if you read the digits from left to right, the values of the digits never decrease. But, if the input is 632, the program should output "no" because 3 is not larger than 6 and 2 is not larger than 3.
Thank you
Step by step
Solved in 5 steps