会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
半月小兵
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2016年5月11日
数据库
摘要: create table CeShi1( Uid varchar(50) primary key, Pwd varchar(50), Name varchar(50), Nation varchar(50), foreign key(Nation) references Nation(code))
阅读全文
posted @ 2016-05-11 19:56 半月小兵
阅读(139)
评论(0)
推荐(0)
编辑
2016年3月12日
数组
摘要: //一维数组【相同数据类型】 //第一种定义方式 // int[] shuzu = new int[5]; // //索引从0开始 // //赋值 //shuzu [0]=1; //shuzu[1] = 2; //shuzu[2] = 3; //shuzu[3] = 4; //shuzu[4] =
阅读全文
posted @ 2016-03-12 16:21 半月小兵
阅读(119)
评论(0)
推荐(0)
编辑
类的练习
摘要: //string 类 //string a = " abcdefg d "; //int c = a.IndexOf("d");//从前面开始找,找到第一个,数他的位置 //int d=a.LastIndexOf("d"); //bool b = a.Contains("d");//是否包含此字符串
阅读全文
posted @ 2016-03-12 11:28 半月小兵
阅读(113)
评论(0)
推荐(0)
编辑
2016年3月11日
3.10l练习
摘要: //第一题:打印N个你好 //for (; ; ) //{ // Console.WriteLine("你好"); //} //第二题:100以内奇数偶数 //for (int i = 1; i <= 100;i++ ) //{ // if (i % 2 == 0) // { // Console.
阅读全文
posted @ 2016-03-11 08:31 半月小兵
阅读(121)
评论(0)
推荐(0)
编辑
2016年3月9日
c#第四课习题
摘要: //顺序 选择 循环 //循环 for //for (; ; ) //死循环 //{ //} //break跳出循环体 //continue结束本次循环,继续下次循环 //打印20遍你好 //for (int a=1;a<=20 ;a++ ) //{ // Console.WriteLine("你好
阅读全文
posted @ 2016-03-09 11:41 半月小兵
阅读(177)
评论(0)
推荐(0)
编辑
2016年3月7日
c#学习第三课
摘要: //语句分类:顺序语句、选择语句(分支语句)、循环语句 //选择、分支语句 //if(){} //int a = 10; //if(a<10) //{ // a++; //} //if(a>3) //{ // a--; //} //Console.WriteLine(a); //if(){}elss
阅读全文
posted @ 2016-03-07 16:37 半月小兵
阅读(121)
评论(0)
推荐(0)
编辑
2016年3月6日
c#学习第二课
摘要: #提纲:Main函数: static void Main(string [] args) { }程序代码需要写在Main函数的花括号内。 一、输出:Console.WriteLine("这是我的第一个程序。");Console.WriteLine("这是第二行代码。");Console.Write(
阅读全文
posted @ 2016-03-06 16:46 半月小兵
阅读(113)
评论(0)
推荐(0)
编辑
2016年3月5日
做了个进制转换图
摘要: 20=1 21=2 22=4 23=8 24=16 25=32 26=64 27=128 80=1 81=8 82=64 83=512 84=4096 85=32768 160=1 161=16 162=256 163=4096
阅读全文
posted @ 2016-03-05 16:32 半月小兵
阅读(95)
评论(0)
推荐(0)
编辑
上一页
1
2
公告