| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 581 人关注过本帖, 1 人收藏
标题:求解释哪里错了。
取消只看楼主 加入收藏
半空的spider
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2013-4-28
结帖率:100%
收藏(1)
 问题点数:0 回复次数:0 
求解释哪里错了。
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 类
{
      public class student      //定义一个类
        {
            public string name;
            public float score1;
            public float score2;
            public float score3;
            public float sum(float s1, float s2,float s3)
            {this.score1=s1;
                this.score2=s2;
                this.score3=s3;
                return score1+score2+score3;
            }
              public float ave(float s1, float s2,float s3)
            {this.score1=s1;
                this.score2=s2;
                this.score3=s3;
                return (score1+score2+score3)/3;
            }
    public partial class Form1 : Form
    {
      
        public Form1()
        {
            InitializeComponent();
        }


        private void button1_Click(object sender, EventArgs e)
        {
            int i = 0;
            float n = 0, m = 0, s1, s2, s3;
            student[] stu = new student[44];
            Random rnd = new Random();
            stu[i].name = ((char)rnd.Next(65, 97)).ToString() + ((char)rnd.Next(65, 97)).ToString() + ((char)rnd.Next(65, 97)).ToString();//姓名
            s1 = (float)rnd.Next(1, 100);// 分数1
            s2 = (float)rnd.Next(1, 100);//分数2
            s3 = (float)rnd.Next(1, 100);//分数3
            n = stu[i].sum(s1, s2, s3);//总分
            m = stu[i].ave(s1, s2, s3);//平均分
            textBox1.Text = Convert.ToString(stu[i].name);
            textBox2.Text = Convert.ToString(s1);
            textBox3.Text = Convert.ToString(s2);
            textBox4.Text = Convert.ToString(s3);
            textBox5.Text = Convert.ToString(n);
            textBox6.Text = Convert.ToString(m);
        }

        }
    }
}
谁能给我正确的写法啊
搜索更多相关主题的帖子: public namespace 
2013-04-30 15:21
快速回复:求解释哪里错了。
数据加载中...
 
   



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

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