using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _19.流程控制之無限循環(huán) { class Program { static void Main(string[] args) { // 無限循環(huán)也稱死循環(huán),永不終止的循環(huán)。 // 使用do...while語句書寫無限循環(huán) { do { } while (true); } // 使用while語句書寫無限循環(huán) { while (true) { } } // 使用for語句書寫無限循環(huán) { for (; ; ) { } } } } }