| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 551 人关注过本帖
标题:菜鸟初学 求大神指教
取消只看楼主 加入收藏
天依旧蓝
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2013-9-4
结帖率:0
收藏
已结贴  问题点数:20 回复次数:0 
菜鸟初学 求大神指教
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace student
{
    class Program
    {
        static void Main(string[] args)
        {
            int [] a=new int[10];
            int[] b =new int[10];
            int[] c = new int[10];
            int s = 0, m;
            string str,str1,str2,str3;
            for (  m = 0; m < 10; m++)
            {
                Console.WriteLine("请输入{0}学号", m+1);
                str=Console.ReadLine();
                a[m] = Convert.ToInt32(str);
                Console.WriteLine("请输入{0}姓名", m+1);
                str1 = Console.ReadLine();
                Console.WriteLine("请输入{0}数学成绩",m+1);
                str2 = Console.ReadLine();
                b[m] = Convert.ToInt32(str2);
                Console.WriteLine("请输入{0}语文成绩", m+1);
                str3 = Console.ReadLine();
                c[m] = Convert.ToInt32(str3);
            }
            for (  m = 0; m < 10; m++)
            {
                s = s + b[m] + c[m];
            }
            Console.WriteLine("学号是{1},姓名是{2},数学成绩是{3},语文成绩是{4},语文数学的和是{5}",a[m],str1 ,b[m],c[m],s);
            Console .ReadKey ();
        }
    }
}
菜鸟初学求解答using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace student
{
    class Program
    {
        static void Main(string[] args)
        {
            int [] a=new int[10];
            int[] b =new int[10];
            int[] c = new int[10];
            int s = 0, m;
            string str,str1,str2,str3;
            for (  m = 0; m < 10; m++)
            {
                Console.WriteLine("请输入{0}学号", m+1);
                str=Console.ReadLine();
                a[m] = Convert.ToInt32(str);
                Console.WriteLine("请输入{0}姓名", m+1);
                str1 = Console.ReadLine();
                Console.WriteLine("请输入{0}数学成绩",m+1);
                str2 = Console.ReadLine();
                b[m] = Convert.ToInt32(str2);
                Console.WriteLine("请输入{0}语文成绩", m+1);
                str3 = Console.ReadLine();
                c[m] = Convert.ToInt32(str3);
            }
            for (  m = 0; m < 10; m++)
            {
                s = s + b[m] + c[m];
            }
            Console.WriteLine("学号是{1},姓名是{2},数学成绩是{3},语文成绩是{4},语文数学的和是{5}",a[m],str1 ,b[m],c[m],s);
            Console .ReadKey ();
        }
    }
}
为什么说使用了未赋值的局部变量“str1”求大神指导
2013-09-08 21:53
快速回复:菜鸟初学 求大神指教
数据加载中...
 
   



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

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