Answer:
Explanation:
I will go straight to the code, and hope it didn't confuse you.
Here is it
public static void main(String[] args)
int [] x = new int [args.length]
for (int y = 0; y< args.length;yi++)
int[y] = (int) args [y]
Answer:
The answer to the give question as follows:
1) \n
2) \t
3) \'
4) \"
5) \\
Explanation:
The description of the above symbols as follows:
- The \n is used to provide the new line spacing.
- The \t is used to provide a tab space.
- To assign a single character value we use \' single.
- The double \" quote is used to assign a string value.
- The backslash is used to provide the character of the escape and it also used in a file path.
Answer:
print("hello world")
Explanation:
a hello world program is simply a program that prints out hello world.
for this you would need to remember to have the same number of brackets on each side and to write print. Also remember when printing to include speech marks.
Visible outline.
hope this helps