一、顺序语句从上到下依次执行二、分支语句1、if语句A、if(条件){满足条件执行}B、if(条件){满足条件执行}else{不满足条件执行}C、if(条件1){满足条件1执行}else if(条件2){不满足条件1,但满足条件2时执行}D、if(条件1) { if(条件2) {在满足条件1的情况... Read More
posted @ 2015-07-07 23:10 陌钰陌城 Views(195) Comments(0) Diggs(0) Edit
一、主函数:namespace ConsoleApplication 这是命名空间class Program 类static void Main(string[] args) 方法主函数的内容:输入语句:Console.ReadLine();//一次读入一行 Console.ReadKey();//... Read More
posted @ 2015-07-07 23:09 陌钰陌城 Views(136) Comments(0) Diggs(0) Edit