![image.png](/uploads/projects/sdyg@hp3066/20cb2801fc53a0019237bfa2a06709f2.png)
![image.png](/uploads/projects/sdyg@hp3066/2ad1e42b97b72ee6a611fe182b489adf.png)
![image.png](/uploads/projects/sdyg@hp3066/00aaaeecb772c4a094b20fac5d1e28bc.png)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace _9_17
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnStat_Click(object sender, EventArgs e)
{
char[] c1 = { ' ' };
String str = this.textBox1.Text;
String[] splitStrings = new string[100];
splitStrings = str.Split(c1);
this.textBox2.Text = splitStrings.Length.ToString();
}
}
}