摘要:
while ( condition )
statement
执行流程:
检测 condition 为 false 将退出while循环流程!为 true,则会执行 statement(一般在此预知运算会影响到 condition 为 false,否则为“死循环”),再检测 condition 如此循环下去.. 阅读全文
摘要:
for ( init-statement; condition; expression )
statement
init-statement -初始化语句
condition -循环条件,产生true或false的表达式
expression -表达式
statement -语句,... 阅读全文
摘要:
if ( condition )
statement
else
statement2
执行流程:
检测 condition 为 true 执行 statement,否则执行 statement2。... 阅读全文
摘要:
一、运行 Visual Studio x64 兼容工具命令提示(2010) 二、进入源文件目录 三、使用 cl 命令编译源码... 阅读全文