Archived
1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SomeLab/ConsoleApp2/Program.cs
2025-10-24 17:19:46 +08:00

14 lines
276 B
C#

using System;
namespace d.d
{
class A2
{ static void Main()
{
bool b1 = true;
//bool b2 = false;
char c = '0';
bool b3 = (c > 64 && c < 123);
Console.WriteLine("{0}\t{1}", b1, b3);
}
}
}