break的兩種形式:
break;未加標籤,適用於switch和循環結構
break labelname;適用於任何代碼塊;
continue的兩種形式:
continue:適用於循環結構
continue labelname:適用於循環結構