if语句

2022/6/25 23:34:38

本文主要是介绍if语句,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


namespace demo.@if
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入分数");
//从屏幕接收一个字符串类型
string x=Console.ReadLine();
//将字符转化为整数类型
int socre = Convert.ToInt32(x);
//Int32 socre1 = Convert.ToInt32(x);
if (socre > 60)//(>,>=,==)
{
Console.WriteLine("恭喜你啊对对对");
}else if (socre==60)
{ Console.WriteLine("111"); }
else //放括号外
{ Console.WriteLine("cuocuocuo"); }
}
}
}



这篇关于if语句的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程