自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

lzz58的专栏

喜欢把当天的事情拖到明天的人的时间永远都会感觉很少

  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 说什么student隐式类型和string不符合,求解决

Console.WriteLine("请输入班级的人数:");             int num = int.Parse(Console.ReadLine());             Student[] s = new Student[num];             for (int i = 0; i             {                 s[i]

2012-11-09 17:23:55 348

原创 计算一个字符串中的数字,字母,标点数

//foreach循环             //int countLetters = 0;             //int countDigits = 0;             //int countPunctuations = 0;             //string input;             //Console.WriteLine("请输入一个字符串

2012-11-09 13:01:26 472

原创 从50个数里面取9个不重复的随机数

class Program     {         static void Main(string[] args)         {             Random r = new Random();             int[] num = new int[9];             for (int i = 0; i             {

2012-11-02 12:33:57 498

原创 c#语句的求解

static void Main(string[] args)         {             int Sum, i;             Sum = 0; i = 1;             while(i             {                 Sum += i;                 i++;             }

2012-10-27 12:16:53 186

原创 99乘法表行的对齐

for (int i = 1; i             {                 for (int j = 1; j                 {                     Console.Write("{0}*{1}={2} ", i, j, i * j);                 }                 Console.Wr

2012-10-26 13:28:36 826 1

设计计算器

计算器的设计

2012-11-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除