about summary refs log tree commit diff
path: root/word_counter/Word Counter/mainForm.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit8f280aeb5b5e0b9f2b396bfde56e563e07d65a99 (patch)
tree9c837b623a598cccba8cad0c932f1e2c3d5231b7 /word_counter/Word Counter/mainForm.cs
parentfat & carb cals (diff)
downloadwf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.gz
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.bz2
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.tar.xz
wf-8f280aeb5b5e0b9f2b396bfde56e563e07d65a99.zip
word counter
Diffstat (limited to 'word_counter/Word Counter/mainForm.cs')
-rw-r--r--word_counter/Word Counter/mainForm.cs56
1 files changed, 56 insertions, 0 deletions
diff --git a/word_counter/Word Counter/mainForm.cs b/word_counter/Word Counter/mainForm.cs
new file mode 100644
index 0000000..c19ca83
--- /dev/null
+++ b/word_counter/Word Counter/mainForm.cs
@@ -0,0 +1,56 @@
+using System;

+using System.Collections.Generic;

+using System.ComponentModel;

+using System.Data;

+using System.Drawing;

+using System.Linq;

+using System.Linq.Expressions;

+using System.Runtime.CompilerServices;

+using System.Text;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Word_Counter

+{

+    public partial class mainForm : Form

+    {

+        public mainForm()

+        {

+            InitializeComponent();

+        }

+

+        private int Words(string str)

+        {

+            return str.Trim().Split().Length;

+        }

+

+        private double AvgLetters(string str)

+        {

+            double letters = str.Trim().Count(char.IsLetter);

+

+            return letters / Words(str);

+        }

+

+        private void calculateBtn_Click(object sender, EventArgs e)

+        {

+            if (inputTxtBox.Text.Trim() == "")

+                wordsLbl.Text = "0";

+            else

+                wordsLbl.Text = Words(inputTxtBox.Text).ToString();

+            

+            avgLettersLbl.Text = AvgLetters(inputTxtBox.Text).ToString("n2");

+        }

+

+        private void clearBtn_Click(object sender, EventArgs e)

+        {

+            inputTxtBox.Text = "";

+            wordsLbl.Text = "?";

+            avgLettersLbl.Text = "?";

+        }

+

+        private void exitBtn_Click(object sender, EventArgs e)

+        {

+            this.Close();

+        }

+    }

+}