会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
把痛苦留给自己
技术改变人生
首页
新随笔
联系
订阅
管理
公告
C#练习代码
Code
Code
using
System;
namespace
_02_01{
class
Class_02_01{
public
static
void
Main(String[] args)
{
short
x
=
32766
;
ushort
y
=
65534
;
x
++
;
y
++
;
Console.WriteLine(
"
x={0}
"
,x);
Console.WriteLine(
"
y={0}
"
,y);
x
++
;
y
++
;
Console.WriteLine(
"
x={0}
"
,x);
Console.WriteLine(
"
y={0}
"
,y);
}
}
}
namespace
_01_01{
class
Class01{
//
应用程序的主入口点。
static
void
Main(String[] args)
{
System.Console.WriteLine(
"
Hello,world!!!
"
);
}
}
}
posted on
2008-10-21 13:33
郭兴华
阅读(
240
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部