write a program to input a number if the number is double digit and divisible by 6display the number 50 time using for loop scanner
Answers
Answered by
0
Explanation:
write a program to input a number if the number is double digit and divisible by 6display the number 50 time using for loop scanner
Answered by
1
Answer:
i am writing psudo code, convert it in proper programming language.
Explanation:
1. Take integer input from user.
2. If number is between 10 to 99 and (number % 6 == 0 ) then print it 50 time.
3. Else do nothing end the program.
Similar questions