Division of two numbers - Practice Exercises Java Lesson 1: First contact with Java Exercise 1.3: Division of two numbers Objetive: Write a Java program to print the result of dividing 24 into 5 on screen. Source Code: JAVA C# public class Main { public static void main(String[] args) { System.out.println(24 / 5); } } Copy Exercise to ClipBoard Copy Code to ClipBoard Exercisey 1.3