You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: