完成如下代码:使其输出“Hello World!”
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{ class Program
{ static void Main(string[] args)
{
if (/* 补充这里 */)
Console.Write("Hello");
else
Console.Write(" World!");
}
}
}
不是很能看懂,求解释if里条件语句是什么意思?作者: zjl717449180 时间: 2014-1-26 10:24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{ class Program
{ static void Main(string[] args)
{
if (Console.Write("Hello") is object)
Console.Write("Hello");
else
Console.Write(" World!");
}
}
}