Group
C# Flow Control Basics
Objective
The objective of this exercise is to develop a C# program that asks the user for two numbers and safely performs division. If the second number is not zero, it will display the result of the division; otherwise, it will display "I cannot divide".
Write a C# program to ask the user for two numbers and display their division if the second number is not zero; otherwise, it will display "I cannot divide".
Example C# Exercise
Show C# Code
using System;
namespace SafeDivision
{
class Program
{
static void Main(string[] args)
{
double numerator, denominator;
Console.Write("Enter the first number: ");
numerator = Convert.ToDouble(Console.ReadLine());
Console.Write("Enter the second number: ");
denominator = Convert.ToDouble(Console.ReadLine());
if (denominator == 0)
{
Console.WriteLine("I cannot divide");
Console.ReadKey();
return; // Sale del método Main si el denominador es 0
}
double result = numerator / denominator;
Console.WriteLine("The result of {0} / {1} is {2}", numerator, denominator, result);
Console.ReadKey();
}
}
}
Output
//Example 1 (Valid division):
Enter the first number: 25
Enter the second number: 5
The result of 25 / 5 is 5
//Example 2 (Division by zero):
Enter the first number: 10
Enter the second number: 0
I cannot divide