C#
If statement in C#
// If statement in C#
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
if (3 < 2)
{
Console.WriteLine("HI");
}
else
{
Console.WriteLine("By");
}
}
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment