一个人一座城一生心疼
2016-07-15 10:30
如何自己选择
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int score = 94;//分数
if(score>95)//判断
{//分支1
Console.WriteLine("奖励一辆自行车");
}
else//分支2
{
Console.WriteLine("要啥自行车");
}
}
}
}
现在你应该知道了吧,告诉我们呗= =我也是输入94的时候还是显示奖励
看看是不是在if语句后面加了分号“;”?
if (score>95)
{
}
你可能写成了if(score>=95)
是不是带等号了?
这个有没有代码呢?
C#开发轻松入门
254118 学习 · 1459 问题
相似问题