Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

static void Main ( string [ ] args ) { string comparison; WriteLine ( Enter a number: ) ; double var 1 = ToDouble

static void Main(string[] args)
{
string comparison;
WriteLine("Enter a number:");
double var1= ToDouble(ReadLine());
WriteLine("Enter another number:");
double var2= ToDouble(ReadLine());
if (var1< var2)
comparison = "less than";
else
{
if (var1== var2)
comparison = "equal to";
else
comparison = "greater than";
}
WriteLine($"The first number is {comparison}"+
$"the second number.");
ReadKey();
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

User Defined Tensor Data Analysis

Authors: Bin Dong ,Kesheng Wu ,Suren Byna

1st Edition

3030707490, 978-3030707491

More Books

Students also viewed these Databases questions