Assignments

Report a typo

Change the code sample to make the output look the following way:

3 5 4

To do that, assign the correct values to the corresponding variables!

Write a program in Java 17
public class Main {

public static void main(String[] args) {
int a;
int b;
int c;

System.out.println(a + " " + b + " " + c);
}
}
___

Create a free account to access the full topic