首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

C#系列课程——BOOL定义

2013-01-26 
C#系列教程——BOOL定义代码如下:using Systempublic class MyClass{static void Main(){bool J truecha

C#系列教程——BOOL定义

代码如下:

using System;public class MyClass{    static void Main()    {        bool J = true;        char D = '0';        Console.WriteLine(J);        J = false;        Console.WriteLine(J);        bool abc = (D > 64 && D < 123);        Console.WriteLine(abc);    }}


 

热点排行