Computer Science, asked by DrNeedHelp, 7 hours ago

Write a JAVA Program that takes a number and check if the given number is a 3 digit
number or not. (use loop)

Answers

Answered by g8669019319
0

Answer:

Program Explanation

Get input num from user using scanf statement check whether the num is greater than 99 and less than 1000 using if statement. if it is true, then print num is three digit number using println statement. Else print num is not three digit number using system. out.

Similar questions