/*
SUBJECT: CPE 402
*SECTION: 2101
SUBMITTED BY: ELSHA JANINE S. MANGUNDAYAO
*DATE: SEPTEMBER 6,2020
*TITLE: ASSIGNMENT1, ITEM1
*PURPOSE:
Input the first number to multiply:2
Input the second number to multiply:3
Input the third number to multiply:6
Expected Output:
2 × 3 × 6 = 36
using System;
public class Program
{
public static void Main(string[]args)
Console.WriteLine("Input the first number to multiply;");
double a =
double.Parse(Console.ReadLine()
);
Console.WriteLine("Input the second number to multiply;");
double b =
Console.WriteLine("Input the third number to multiply;");
double c =
Console.WriteLine(a+ "*" + b + "*" + c + "=" + a*b*c);
}