3.C#WinForm基礎累加器

來源:互聯網
上載者:User

標籤:winform   style   blog   http   color   os   io   資料   

功能:實現累加計算。

知識點:

bool int.TryParse(string s,out int result)(+1重載) 

將數位字串形式轉換為它的等效的32位有效有符號整數,一個指示操作是否成功的傳回值。

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace 累加器{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void button1_Click(object sender, EventArgs e)        {            string s1 = textBox1.Text;//文字框一輸入的內容存放到字串s1            string s2 = textBox2.Text;//文字框一輸入的內容存放到字串s1            int i1,i2;            /*  bool int.TryParse(string s,out int result)(+1重載)             * 將數位字串形式轉換為它的等效的32位有效有符號整數,一個指示操作是否成功的傳回值。             */            if (int.TryParse(s1, out i1) == false)//文字框一輸入內容字串s1轉換成整型資料i1            {                MessageBox.Show("第一個數格式錯誤!!!");                return;            }            if (int.TryParse(s2, out i2) == false) //文字框一輸入內容字串s1轉換成整型資料i2            {                MessageBox.Show("第二個數格式錯誤!!!");                return;            }            if (i1 >= i2) //檢查錯誤            {                MessageBox.Show("第二個數必須大於第一個數");//在出錯的地方設定斷點,看相關變數的值。                return;            }            int sum=0;            for (int i = i1; i <= i2; i++)            {                sum = sum + i;            }            textBox3.Text = Convert.ToString(sum);//將計算的和賦值給文字框三        }    }}

程式:

軟體:http://pan.baidu.com/s/1bnq256B

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.