loop. let mut count = 0; loop { count = count + 1; // 一直循环到100为止if count == 100 { break; // 破出循环} }.
確定! 回上一頁