Equivalent operations Learn programming C#

Lesson:

First contact with C# Sharp


Exercise:

Equivalent operations


Objetive:

Write a C# program to ask the user for three numbers (a, b, c) and display the result of (a+b)·c and the result of a·c + b·c.


Code:

using System;
public class exercise10
{
    public static void Main()
    {
        int num1, num2, num3;
        Console.Write("Enter first number....");
        num1 = Convert.ToInt32(Console.ReadLine());
        Console.Write("Enter second number....");
        num2 = Convert.ToInt32(Console.ReadLine());
        Console.Write("Enter third number....");
        num3 = Convert.ToInt32(Console.ReadLine());
        Console.Write("Result of operation between {0}," +
        " {1} and {2}, (a+b)·c is {3} and a·b + a·c is {4}",
        num1, num2, num3, ((num1 + num2) * num3), (num1 * num3 + num2 * num3));
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.