Ask Your Question
4

What is the method to incorporate a space between the digits when using System.out.print?

asked 2023-04-30 20:09:16 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-04-30 20:36:01 +0000

lakamha gravatar image

One method to incorporate a space between the digits when using System.out.print is to use the concatenation operator "+" to add a space character " " between the digits. For example:

System.out.print(digit1 + " " + digit2);

This would print the value of digit1 followed by a space character, followed by the value of digit2.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-04-30 20:09:16 +0000

Seen: 10 times

Last updated: Apr 30 '23