赞
踩
☺
一、if语句:
if(条件) if (条件)语句;
{语句1;语句2;…}
用一对大括号来组成语句块
要点:只有小括号的值为true时,大括号里的内容才执行
例子1:跪键盘
Console.WriteLine("请输入跪键盘的时间"); string strMain = Console.ReadLine(); int min = Convert.ToInt32(strMain); bool result = min > 60; if (result)//条件 或者 是 bool 值 //只有小括号的值为true时,大括号里的内容才执行 { Console.WriteLine("不用跪键盘了"); } Console.ReadKey();
例子2:判断到结婚年龄的人儿
Console.WriteLine("请您输入年龄");
int age = Convert.ToInt32(Console.ReadLine());
if (age >= 23)
{
Console.WriteLine("可以结婚了哈");
}
Console.ReadKey();
☺
二、更好的实现:if-else语句
语法:
if(条件)</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。