HHeeeeellllpppp java
java code problem Please, the code contains errors, and I do not know how to amend them. When I enter the correct answers, they appear wrong Program of competitions to divide two randomly generated numbers, taking into account that division by zero is forbidden. try it on another editor not sololearn write it as a code please import java.util.Scanner; public class Lap5_2Sec4 { public static void main(String[] args) { int number1=(int)(Math.random()*30); int number2=(int)(Math.random()*30); if (number1<number2){ int temp=number1; number1=number2; number2=temp; } System.out.print("What is "+number1+"/"+number2+"?"); Scanner input = new Scanner (System.in); int answer= input.nextInt(); if (number1/number2==answer) System.out.println("You are correct"); else System.out.println("Your answer is wrong.\n"+number1+"/"+number2+"could be"+(number1/number2)); }}