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