回 帖 发 新 帖 刷新版面

主题:哪里错了

using System;
class DataBool
{
    public static void Main()
{
        bool b;
    b=False;
    Console.WriteLine(" b is {0} ", b);
    b=True;
    Console.WriteLine("b is {0}", b);
    //一个布尔值能够控制的if语句
    if (b) Console.WriteLine("This is executed. ");
    b=False;
    if (b) Console.WriteLine("This is not executed. ");
    //运算关系符的结果是一个布尔值
    Console.WriteLine("10>9 is {0}",(10>9));
}
}
 哪里错了哦

回复列表 (共7个回复)

沙发

看不懂你想做什么?

板凳

false
true
不是
False
True

3 楼

if (b) Console.WriteLine("This is executed. ");
    b=False;
    if (b) Console.WriteLine("This is not executed. ");
    //运算关系符的结果是一个布尔值
    Console.WriteLine("10>9 is {0}",(10>9));


看了那么别扭!

你编程书写不是太好吧!个人感觉,别介意啊楼主!

4 楼

bool变量的两个值是false和true  不是  False和True。

5 楼

我调试了一下,把False,True改为true,false就能得到结果.我改后的程序为:
static void Main(string[] args)
        {
            bool b;
            b=false;
            Console.WriteLine(" b is {0} ", b);
            b=true;
            Console.WriteLine("b is {0}", b);
            //一个布尔值能够控制的if语句
            if (b) Console.WriteLine("This is executed. ");
            b=false;
            if (b) Console.WriteLine("This is not executed. ");
            //运算关系符的结果是一个布尔值
            Console.WriteLine("10>9 is {0}",(10>9));
            Console.ReadLine();

        }

6 楼

注意大小写哦

7 楼

不知道你要表达什么意思!不过这里确实是一个大小写的问题,你肯定不是在编辑器里写的吧!

我来回复

您尚未登录,请登录后再回复。点此登录或注册