for 循环的特点,是把与循环有关的内容都放在(计数变量初始化;循环条件;变量自加)里面,使得程序结构清楚,适合于已知循环次数的循环。
请在第 11 行完善 for 循环结构,使得程序能够打印 6 行“ Yeah! ”
using System; using System.Collections.Generic; using System.Text; namespace Test { class Program { static void Main(string[] args) { for ( )//请填写for循环结构 { Console.WriteLine("Yeah!"); } } } }