标题:求高人看看错误的地方。
取消只看楼主
wanden_zhuo
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-20
结帖率:100%
已结贴  问题点数:10 回复次数:2 
求高人看看错误的地方。
编了窗体程序,但是运行时出现了些问题,求高人指点迷津
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Grade
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            label1.Text = ("请输入分数:");
            button1.Text = ("转换");
            label2.Text = ("成绩等级:");
        }

        private void button1_Click(object sender, EventArgs e)
        {
            double score;
            score = Convert.ToDouble(textBox1.Text);
            string grade;
            if (score >= 100 || score < 0)
            {
                textBox2.Text += ("输入的分数不合法,请核查!");
            }
            if (score >= 90)
                grade = "优秀";
            else if (score >= 80)
                grade = "良好";
            else if (score >= 70)
                grade = "中等";
            else if (score >= 60)
                grade = "及格";
            else
                grade = "不及格";
            textBox2.Text += grade.ToString();
        }
    }
}
搜索更多相关主题的帖子: void private public 
2012-04-24 16:18
wanden_zhuo
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-20
得分:0 
回复 2楼 lhb62232397
非常感谢呀!
2012-04-25 20:42
wanden_zhuo
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-3-20
得分:0 
回复 4楼 CMYK
这个不能吧,让他输入的是数字了的。
2012-04-25 20:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-366456-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.117916 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved