68.7k views
4 votes
I need the java code for netbeans to produce this output

3 50
2 20
2 100
5 15
1 90
5 85
4 300
2 35
3 100


I need this in java code to produce this output in NetBeans

3 50
2 20
2 100
5 15
1 90
5 85
4 300
2 35
3 100

User Kevin Dong
by
7.6k points

1 Answer

4 votes

Final answer:

To produce the required output in Java using NetBeans, simply print the sequence with a 'System.out.println()' statement in the main method of your Java class.

Step-by-step explanation:

If you need to produce a specific output sequence in a Java program using NetBeans, you can simply print out the sequence with a System.out.println() statement. Here's a basic example of Java code that accomplishes this:

public class OutputSequence {

public static void main(String[] args) {

System.out.println("3 50 2 20 2 100 5 15 1 90 5 85 4 300 2 35 3 100");

}

}

Once you compile and run this program in NetBeans, it will print out the sequence you've provided. Remember to ensure that the Java Development Kit (JDK) is properly installed on your machine, and that you have set up a project in NetBeans to execute this code.

User Anis Tissaoui
by
8.1k points