符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _16.流程控制之while循环 { class Program { static void Main(string[] args) { /** * while循环语句 * 其语法: * while* { * * } * * 执行过程: * 1. 计算
布尔表达式的值; * 2. 如果 布尔表达式的值为true,则执行标记为循环的代码; * 3. 如果 布尔表达式的值为false,则退出循环执行循环结构外的代码; * 4. 如果 布尔表达式的值为true时,则重复1~3步骤。 * * 特殊说明: * 1. do...while语句中的循环体至少被执行一次,而while语句中循环体可能不被执行。 * 2. while语句后面不用书写分号。 * */ // 求2+4+...+10计算的结果。 int i = 2, sum = 0; do { sum += i; i += 2; } while (i <= 10); Console.WriteLine("2+4+...+10 = {0}", sum); Console.ReadKey(); } } }