-
Notifications
You must be signed in to change notification settings - Fork 9
Question 2.20 #10
Copy link
Copy link
Open
Labels
Difficult01Level of difficulty is of level very easyLevel of difficulty is of level very easyenhancementNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
Difficult01Level of difficulty is of level very easyLevel of difficulty is of level very easyenhancementNew feature or requestNew feature or request
Type
Fields
Give feedbackNo fields configured for issues without a type.
Write an application that inputs one number from the user, separates the number into its individual digits and prints the digits separated from one another by three spaces each. For example, if the user types in the number 42339, the program should print
4 2 3 3 9
Hint You’ll need to use both division and remainder operations to “pick off” each digit.