2014年12月22日
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication1 7 { 8 class Clas... 阅读全文
posted @ 2014-12-22 21:04 酸甜sky 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 男人的标准体重是:体重(kg)=身高(cm)-100。女人的标准体重是:体重(kg)=身高(cm)-110。上下浮动3公斤属正常要求输入性别、身高和体重,输出正常,偏胖,偏瘦 1 using System; 2 using System.Collections.Generic; 3 using Sy... 阅读全文
posted @ 2014-12-22 21:02 酸甜sky 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication1 7 { 8 class 闰平年 ... 阅读全文
posted @ 2014-12-22 20:59 酸甜sky 阅读(1361) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication1 7 { 8 class Prog... 阅读全文
posted @ 2014-12-22 20:58 酸甜sky 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication1 7 { 8 class Clas... 阅读全文
posted @ 2014-12-22 20:55 酸甜sky 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 语句:顺序,分支,循环。(一)顺序:略分支:判断--表达式。if(){}四大类:1.if if (age > 18) { Console.WriteLine("可以去当兵!"); } 注意:if表达式后面只管一句话,可以省略掉{};如果if表达式后... 阅读全文
posted @ 2014-12-22 20:51 酸甜sky 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 运算符:一、算术运算符:+ - * /% ——取余运算取余运算的应用场景:1.奇偶数的区分。2.把数变化到某个范围之内。——彩票生成。3.判断能否整除。——闰年、平年。 int a = 10, b = 3; Console.WriteLine("10/3=... 阅读全文
posted @ 2014-12-22 20:46 酸甜sky 阅读(134) 评论(0) 推荐(0) 编辑