條件結構:
if(語句1)
if(語句1)else(語句2)
if(語句1)elseif(語句2)else(語句3)
switch結構:
switch()
{
case 1:
break;
case 2:
break;
default:
break;
}
循環:
while循環
while(t條件)
{
}
for循環
for(
)
{
}
do-while循環:
do
{
}while()
原文地址:https://www.cnblogs.com/Zhengxiaoxiao/p/10475251.html
时间: 2024-10-28 16:32:54