现在几点了?
namescape consoleApplication
{
class Program
{
static void Main(string[] args)
{
Console.Write("现在几点了?");
int a =int.parse(Console.ReadLine());
if(a>0 && a<12)
{
Console.WriteLine("上午”+a+”点了")
}
else
{
Console.WriteLine("下午“”+(a-12)+“”点了")
}
Console.ReadLine();
}
}
}
//1始终是大于0的,说不定考试就能用上。加深下印象吧。
时间: 2024-12-06 08:44:07