qq_周少_0
2017-09-19 17:18
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
char sex='男';//性别
int age = 21;//年龄
if(sex=='女')//请填写条件
{
if (age >= 20)
{
Console.WriteLine("达到法定婚龄啦");
}
else
{
Console.WriteLine("没有达到哟");
}
}
else
{
if (age >= 22)
{
Console.WriteLine("达到法定婚龄!");
}
else
{
Console.WriteLine("没有达到!");
}
}
}
}
}
char类型的女和字符串类型的又不一样了,虽然看着一样,但是内存地址和类型不同,而如果你想使用双引号,也可以,只需要把sex属性声明为string类型的就可以了
因为char是单字符所以要用单引号 char里面只能有一个字符
一个字默认为字符,两个字以上默认为字符串,字符为‘哈’ 字符串为 "哈哈"
字符串用双引号括起来,字符用单引号,女 字作为一个字符,所以用单引号。
C#开发轻松入门
254118 学习 · 1459 问题
相似问题