十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _19.流程控制之无限循环 { class Program { static void Main(string[] args) { // 无限循环也称死循环,永不终止的循环。 // 使用do...while语句书写无限循环 { do { } while (true); } // 使用while语句书写无限循环 { while (true) { } } // 使用for语句书写无限循环 { for (; ; ) { } } } } }