Question: Help with Java Netbeans: Java program build is successful but nothing is showing in the input. Below is a picture of my code and what
Help with Java Netbeans: Java program build is successful but nothing is showing in the input. Below is a picture of my code and what is at the bottom. I have System.out.print what could be wrong?

* To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. package hw1.pkg26; O import java.util.Scanner; public class HW126 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter two integers:"); int a = sc.nextInt (); int b = sc.nextInt(); if(a b == 0) System.out.println(a +" is multiple of " + b); else System.out.println(a + " is not mulitple of " + b); hw1.pkg 26.HW 126 > Output - HW1.26 (run) X run: BUILD SUCCESSFUL (total time: 0 seconds)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
