Answers for "math commands in c#"

C#
1

basic math functions in c#

int a = 10;
int b = 5;
Console.WriteLine("------------Basic math functions----------------");
Console.WriteLine("Multiplication:- ");
Console.WriteLine(a*b);
Console.WriteLine("Subtraction:- ");
Console.WriteLine(a-b);
Posted by: Guest on October-30-2021

C# Answers by Framework

Browse Popular Code Answers by Language