C# Program to Multiply two Floating Point Numbers. This program is compiled and tested on a Visual Studio 2012.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | using System; namespace TechStudyCSharp { class Program { static void Main(string[] args) { double num1; double num2; double total; Console.WriteLine("Enter first number :"); num1 = Convert.ToDouble( Console.ReadLine()); Console.WriteLine("Enter second number :"); num2 = Convert.ToDouble(Console.ReadLine()); total = num2 * num1; Console.WriteLine("\nTotal is : " + total); Console.ReadKey(); } } } |
19 March 2019 2348 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap