this is my code:
int num1,num2,num3;
if(num1
else if(num2
else
txtLow.Text=(num3);
it's a windows application that will display the lowest number.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Oct 14, 2014, 6:56 AM
int min12 = Math.Min(num1, num2);
txtLow.Text = Math.Min(min12, num3).ToString();
Khan Abrar AhmedPosted Oct 14, 2014, 5:21 AM
int num1,num2,num3;
if(num1
else if(num2
else{
txtLow.Text=Convert.Tostring(num3);}
Munesh SharmaPosted Oct 14, 2014, 5:21 AM
int num1,num2,num3;
if(num1
txtLow.Text= conver.tostring(num1);
else if(num2
txtLow.Text= conver.tostring(num2);
else
txtLow.Text= conver.tostring(num3);