import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.GridBagLayout;
import javax.swing.JFormattedTextField;
import javax.swing.JList;
import java.awt.GridBagConstraints;
import javax.swing.JRadioButton;
import java.awt.Insets;
import javax.swing.border.LineBorder;
import java.awt.Color;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
import javax.swing.border.EtchedBorder;
import java.awt.Component;
import javax.swing.Box;
import java.awt.Panel;
import javax.swing.border.TitledBorder;
import javax.swing.AbstractListModel;
import java.awt.Font;
import javax.swing.event.ListSelectionListener;
import javax.swing.event.ListSelectionEvent;
import javax.swing.JRadioButtonMenuItem;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.SystemColor;
import javax.swing.UIManager;

public class d031910164 extends JFrame {

	private JPanel contentPane;
	private JTextField item_txt;
	private JTextField quantity_txt;
	private JLabel Totallbl;
	private JRadioButton Button1;
	private JRadioButton Button2; 
	private JRadioButton Button3;
	private JRadioButton Button4;
	private JRadioButton Button5;
	
	private JRadioButton Button7;
	

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					screen frame = new screen();
					frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public d031910164() {
		setBackground(Color.LIGHT_GRAY);
		setTitle("Online Computer Ordering");
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setBounds(100, 100, 791, 323);
		contentPane = new JPanel();
		contentPane.setBackground(SystemColor.menu);
		contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
		setContentPane(contentPane);
		contentPane.setLayout(null);
		
		quantity_txt = new JTextField();
		quantity_txt.setFont(new Font("Tahoma", Font.PLAIN, 14));
		quantity_txt.setText("Quantity");
		quantity_txt.setBounds(382, 228, 86, 28);
		contentPane.add(quantity_txt);
		quantity_txt.setColumns(10);
		
		JLabel Totallbl = new JLabel("Total");
		Totallbl.setFont(new Font("Tahoma", Font.BOLD, 15));
		Totallbl.setBounds(681, 223, 51, 36);
		contentPane.add(Totallbl);
		
		JButton calcButton = new JButton("Calculate");
		calcButton.setFont(new Font("Tahoma", Font.BOLD, 15));
		calcButton.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				double item = Double.parseDouble(item_txt.getText());
				int quantity = Integer.parseInt(quantity_txt.getText());
				double total = item * quantity;
				Totallbl.setText(Double.toString(total));
				
			}
		});
		calcButton.setBounds(511, 228, 109, 27);
		contentPane.add(calcButton);
		
		
		
		JLabel lblNewLabel_1 = new JLabel("*");
		lblNewLabel_1.setFont(new Font("Tahoma", Font.PLAIN, 16));
		lblNewLabel_1.setHorizontalAlignment(SwingConstants.CENTER);
		lblNewLabel_1.setBounds(353, 235, 19, 14);
		contentPane.add(lblNewLabel_1);
		
		JPanel panel_1 = new JPanel();
		panel_1.setBackground(SystemColor.menu);
		panel_1.setForeground(Color.WHITE);
		panel_1.setBorder(new TitledBorder(new LineBorder(new Color(153, 180, 209)), "Item", TitledBorder.LEADING, TitledBorder.TOP, null, new Color(0, 0, 0)));
		panel_1.setBounds(20, 11, 215, 262);
		contentPane.add(panel_1);
		panel_1.setLayout(null);
		
		JList itemList = new JList();
		itemList.addListSelectionListener(new ListSelectionListener() {
			public void valueChanged(ListSelectionEvent e) {
				if(itemList.getSelectedIndex()==0)
				{
					item_txt.setText("2000.00");
				}
				else if(itemList.getSelectedIndex()==1)
				{
					item_txt.setText("3500.00");
				}
				else if(itemList.getSelectedIndex()==2)
				{
					item_txt.setText("4000.00");
				}
				else if(itemList.getSelectedIndex()==3)
				{
					item_txt.setText("200.00");
				}
				else if(itemList.getSelectedIndex()==4)
				{
					item_txt.setText("500.00");
				}
				
				
				
			}
		});
		itemList.setFont(new Font("Tahoma", Font.BOLD, 14));
		itemList.setModel(new AbstractListModel() {
			String[] values = new String[] {"Laptop 2000.00", "Computer 3500.00", "PC Gaming 4000.00", "Storage 200.00", "Printer + Ink 500.00"};
			public int getSize() {
				return values.length;
			}
			public Object getElementAt(int index) {
				return values[index];
			}
		});
		itemList.setBounds(10, 23, 195, 144);
		panel_1.add(itemList);
		itemList.setBorder(null);
		
		
		JRadioButton Button1 = new JRadioButton("1");
		Button1.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button2 = new JRadioButton("2");
		Button2.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button3 = new JRadioButton("3");
		Button3.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button4 = new JRadioButton("4");
		Button4.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button5 = new JRadioButton("5");
		Button5.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button6 = new JRadioButton("6");
		Button6.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button7 = new JRadioButton("7");
		Button7.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button8 = new JRadioButton("8");
		Button8.setFont(new Font("Tahoma", Font.BOLD, 12));
		JRadioButton Button9 = new JRadioButton("9");
		Button9.setFont(new Font("Tahoma", Font.BOLD, 12));
		
		Button1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button1.isSelected())
				{
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button8.setSelected(false);
					quantity_txt.setText("1");
				}
			}
		});
		Button1.setBounds(273, 42, 109, 23);
		contentPane.add(Button1);
		
		
		Button4.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button4.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("4");
				}
			}
		});
		Button4.setBounds(273, 83, 109, 23);
		contentPane.add(Button4);
		
		
		Button7.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button7.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("7");
					
				}
			}
		});
		Button7.setBounds(273, 131, 109, 23);
		contentPane.add(Button7);
		
		JLabel lblNewLabel = new JLabel("RM");
		lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 15));
		lblNewLabel.setBounds(640, 234, 27, 14);
		contentPane.add(lblNewLabel);
		
		
		Button2.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button2.isSelected())
				{
					Button1.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("2");
					
				}
				
			}
		});
		
		Button2.setBounds(380, 42, 109, 23);
		contentPane.add(Button2);

		
		Button5.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button5.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("5");
					
				}
			}
		});
		Button5.setBounds(380, 83, 109, 23);
		contentPane.add(Button5);
		
		
		Button8.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button8.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("8");
					
				}
			}
		});
		
		Button8.setBounds(380, 131, 109, 23);
		contentPane.add(Button8);
		
		
		Button3.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button3.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("3");
					
				}
				
			}
		});
		Button3.setBounds(491, 42, 109, 23);
		contentPane.add(Button3);
		
		
		Button6.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button6.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button5.setSelected(false);
					Button5.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					Button9.setSelected(false);
					quantity_txt.setText("6");
					
				}
			}
		});
		
		Button6.setBounds(491, 83, 109, 23);
		contentPane.add(Button6);
		
		
		Button9.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				if(Button9.isSelected())
				{
					Button1.setSelected(false);
					Button2.setSelected(false);
					Button3.setSelected(false);
					Button4.setSelected(false);
					Button5.setSelected(false);
					Button6.setSelected(false);
					Button7.setSelected(false);
					Button8.setSelected(false);
					quantity_txt.setText("9");
					
				}
			}
		});
		
		Button9.setBounds(491, 131, 109, 23);
		contentPane.add(Button9);
		
		item_txt = new JTextField();
		item_txt.setFont(new Font("Tahoma", Font.PLAIN, 14));
		item_txt.setBounds(257, 228, 86, 28);
		contentPane.add(item_txt);
		item_txt.setText("Price");
		item_txt.setColumns(10);
		
		JLabel lblNewLabel_2 = new JLabel("=");
		lblNewLabel_2.setFont(new Font("Tahoma", Font.BOLD, 14));
		lblNewLabel_2.setBounds(486, 234, 27, 14);
		contentPane.add(lblNewLabel_2);
		
		JPanel panel = new JPanel();
		panel.setBounds(245, 11, 520, 179);
		contentPane.add(panel);
		panel.setBackground(SystemColor.menu);
		panel.setForeground(SystemColor.activeCaption);
		panel.setBorder(new TitledBorder(new EtchedBorder(EtchedBorder.LOWERED, new Color(255, 255, 255), new Color(153, 180, 209)), "Quantity", TitledBorder.LEADING, TitledBorder.TOP, null, new Color(0, 0, 0)));
		
		JPanel panel_2 = new JPanel();
		panel_2.setBounds(245, 190, 520, 83);
		contentPane.add(panel_2);
		panel_2.setBorder(new TitledBorder(new LineBorder(new Color(153, 180, 209)), "Calculate Total Price", TitledBorder.LEADING, TitledBorder.TOP, null, null));
	}
}
 
by

Java online compiler

Write, Run & Share Java code online using OneCompiler's Java online compiler for free. It's one of the robust, feature-rich online compilers for Java language, running the Java LTS version 17. Getting started with the OneCompiler's Java editor is easy and fast. The editor shows sample boilerplate code when you choose language as Java and start coding.

Taking inputs (stdin)

OneCompiler's Java online editor supports stdin and users can give inputs to the programs using the STDIN textbox under the I/O tab. Using Scanner class in Java program, you can read the inputs. Following is a sample program that shows reading STDIN ( A string in this case ).

import java.util.Scanner;
class Input {
    public static void main(String[] args) {
    	Scanner input = new Scanner(System.in);
    	System.out.println("Enter your name: ");
    	String inp = input.next();
    	System.out.println("Hello, " + inp);
    }
}

Adding dependencies

OneCompiler supports Gradle for dependency management. Users can add dependencies in the build.gradle file and use them in their programs. When you add the dependencies for the first time, the first run might be a little slow as we download the dependencies, but the subsequent runs will be faster. Following sample Gradle configuration shows how to add dependencies

apply plugin:'application'
mainClassName = 'HelloWorld'

run { standardInput = System.in }
sourceSets { main { java { srcDir './' } } }

repositories {
    jcenter()
}

dependencies {
    // add dependencies here as below
    implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
}

About Java

Java is a very popular general-purpose programming language, it is class-based and object-oriented. Java was developed by James Gosling at Sun Microsystems ( later acquired by Oracle) the initial release of Java was in 1995. Java 17 is the latest long-term supported version (LTS). As of today, Java is the world's number one server programming language with a 12 million developer community, 5 million students studying worldwide and it's #1 choice for the cloud development.

Syntax help

Variables

short x = 999; 			// -32768 to 32767
int   x = 99999; 		// -2147483648 to 2147483647
long  x = 99999999999L; // -9223372036854775808 to 9223372036854775807

float x = 1.2;
double x = 99.99d;

byte x = 99; // -128 to 127
char x = 'A';
boolean x = true;

Loops

1. If Else:

When ever you want to perform a set of operations based on a condition If-Else is used.

if(conditional-expression) {
  // code
} else {
  // code
}

Example:

int i = 10;
if(i % 2 == 0) {
  System.out.println("i is even number");
} else {
  System.out.println("i is odd number");
}

2. Switch:

Switch is an alternative to If-Else-If ladder and to select one among many blocks of code.

switch(<conditional-expression>) {    
case value1:    
 // code    
 break;  // optional  
case value2:    
 // code    
 break;  // optional  
...    
    
default:     
 //code to be executed when all the above cases are not matched;    
} 

3. For:

For loop is used to iterate a set of statements based on a condition. Usually for loop is preferred when number of iterations is known in advance.

for(Initialization; Condition; Increment/decrement){  
    //code  
} 

4. While:

While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.

while(<condition>){  
 // code 
}  

5. Do-While:

Do-while is also used to iterate a set of statements based on a condition. It is mostly used when you need to execute the statements atleast once.

do {
  // code 
} while (<condition>); 

Classes and Objects

Class is the blueprint of an object, which is also referred as user-defined data type with variables and functions. Object is a basic unit in OOP, and is an instance of the class.

How to create a Class:

class keyword is required to create a class.

Example:

class Mobile {
    public:    // access specifier which specifies that accessibility of class members 
    string name; // string variable (attribute)
    int price; // int variable (attribute)
};

How to create a Object:

Mobile m1 = new Mobile();

How to define methods in a class:

public class Greeting {
    static void hello() {
        System.out.println("Hello.. Happy learning!");
    }

    public static void main(String[] args) {
        hello();
    }
}

Collections

Collection is a group of objects which can be represented as a single unit. Collections are introduced to bring a unified common interface to all the objects.

Collection Framework was introduced since JDK 1.2 which is used to represent and manage Collections and it contains:

  1. Interfaces
  2. Classes
  3. Algorithms

This framework also defines map interfaces and several classes in addition to Collections.

Advantages:

  • High performance
  • Reduces developer's effort
  • Unified architecture which has common methods for all objects.
CollectionDescription
SetSet is a collection of elements which can not contain duplicate values. Set is implemented in HashSets, LinkedHashSets, TreeSet etc
ListList is a ordered collection of elements which can have duplicates. Lists are classified into ArrayList, LinkedList, Vectors
QueueFIFO approach, while instantiating Queue interface you can either choose LinkedList or PriorityQueue.
DequeDeque(Double Ended Queue) is used to add or remove elements from both the ends of the Queue(both head and tail)
MapMap contains key-values pairs which don't have any duplicates. Map is implemented in HashMap, TreeMap etc.