1. 程式人生 > >C#第四章課後練習2

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();







        }
    }
}