C#第四章课后练习2

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication8
{ 
    class Program
    {
        static void Main(string[] args)
        {
            string se = "* ** *** **** *****";
            string[] no = se.Split(' ');
            foreach (string s in no) {
                Console.WriteLine(s);
            }
            Console.ReadLine();







        }
    }
}

你可能感兴趣的:(C#第四章课后练习2)