about summary refs log tree commit diff
path: root/most_common_char/Most Common Character/mainForm.cs
blob: 7f008e63db53f8cd78dc3e7540087ee69a074c75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Most_Common_Character
{
    public partial class mostCommonCharacter : Form
    {
        public mostCommonCharacter()
        {
            InitializeComponent();
        }

        private void calculateBtn_Click(object sender, EventArgs e)
        {
            string str = inputTxtBox.Text.Replace(" ", "").ToLower();
            int commonChar = 0;
            char ch = '\0';

            for (int i = 0; i < str.Length; i++) {
                int chars = 0;

                for (int j = 0; j < str.Length; j++)
                    if (str[i] == str[j])
                        chars++;

                if (chars > commonChar) {
                    commonChar = chars;
                    ch = str[i];
                }
            }

            outputLbl.Text = ch.ToString();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            inputTxtBox.Text = "";
            outputLbl.Text = "";
        }

        private void exitBtn_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}