Nested if statements C#

Qaybta Xirfada Sayniska iyo iwm

Moderators: Moderators, Junior Moderators

User avatar
Rightwing
SomaliNet Super
SomaliNet Super
Posts: 9248
Joined: Mon Dec 23, 2002 7:00 pm
Location: Maqaamka lagu xadreeyo MEDED, MEDED
Contact:

Nested if statements C#

Post by Rightwing »

using system;
class Values
{
static void Main()
{
int temp = 32;
if(temp <=32)
{
Console.Writeline(Warning! Ice on the road!");
if(temp==32)
{
Console.Writeline("Temp exactly freezing, beaware of water.");
}
else
{
Console.Writeline("Watch for black ice! Temp: {0}", temp);
}
}
}
}
  • Similar Topics
    Replies
    Views
    Last post

Return to “Careers - Engineering, Science & Computers”