Answers for "simple addition with c#"

C#
1

function in c# to do addition

int a = 80;
int b = 20;
int addition(int number1, int number2)
{
	int result = number1 + number2;
	return result;
}
Console.WriteLine(addition( a,  b));
Posted by: Guest on October-01-2021

C# Answers by Framework

Browse Popular Code Answers by Language