• 大小: 10.09MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-25
  • 语言: C#
  • 标签: C#  马骏  上机实验  

资源简介

课后全部上机实验的源代码,考试复习,平时作业最佳参考~~你值得拥有!(●'◡'●)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ArrayTest
{
    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
            begin:
                Console.Write(“请输入5个整数(逗号分隔):“);
                string s = Console.ReadLine();
                string[] sArray = s.Split(‘‘);
                if (sArray.Length != 5)
                {
                    Console.WriteLine(“错误:输入的不是5个数,请再次输入。“);
                    continue;
                }
                int[] nArray = new int[5];
                for (int i = 0; i < nArray.Length; i++)
                {
                    if (int.TryParse(sArray[i] out nArray[i]) == false)
                    {
                        Console.WriteLine(“错误:无法将\“{0}\“转换为整数,请再次输入。“ sArray[i]);
                        goto begin;
                    }
                }
                Array.Sort(nArray);
                Console.WriteLine(“正序:{0}“ string.Join(““ nArray));
                Array.Reverse(nArray);
                Console.WriteLine(“逆序:{0}“ string.Join(““ nArray));
                Console.WriteLine(“平均值:{0:f1}“ nArray.Average());
                Console.WriteLine(“最大值:{0:f1}“ nArray.Max());
                Console.Write(“按回车键退出,其他键继续“);
                var key=Console.ReadKey();
                if (key.Key == ConsoleKey.Enter)
                {
                    break;
                }
                Console.Clear();
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         30  2013-06-15 07:07  第3版CSharp程序设计及应用教程上机练习源程序\A1\说明.txt

     文件       2402  2013-06-22 05:39  第3版CSharp程序设计及应用教程上机练习源程序\A2\A2.sln

    ..A..H.     89088  2016-06-08 15:29  第3版CSharp程序设计及应用教程上机练习源程序\A2\A2.v11.suo

     文件        187  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\App.config

     文件       2559  2013-06-20 04:48  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\ArrayTest.csproj

     文件       5632  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.exe

     文件        187  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.exe.config

     文件      15872  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.pdb

     文件      22984  2016-06-08 15:20  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.vshost.exe

     文件        187  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.vshost.exe.config

     文件        490  2015-10-30 15:19  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\bin\Debug\ArrayTest.vshost.exe.manifest

     文件       1592  2016-06-08 15:20  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\ArrayTest.csproj.FileListAbsolute.txt

     文件       1753  2013-06-20 04:48  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\ArrayTest.csprojResolveAssemblyReference.cache

     文件       5632  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\ArrayTest.exe

     文件      15872  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\ArrayTest.pdb

     文件       6913  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件          0  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件       1767  2013-06-20 04:59  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\Program.cs

     文件       1338  2013-06-20 04:24  第3版CSharp程序设计及应用教程上机练习源程序\A2\ArrayTest\Properties\AssemblyInfo.cs

     文件        187  2013-06-15 08:21  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\App.config

     文件       6144  2013-06-16 06:44  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.exe

     文件        187  2013-06-15 08:21  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.exe.config

     文件      15872  2013-06-16 06:44  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.pdb

     文件      22984  2013-06-20 03:35  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.vshost.exe

     文件        187  2013-06-15 08:21  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.vshost.exe.config

     文件        490  2012-06-06 02:06  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\bin\Debug\IntDevideTest.vshost.exe.manifest

     文件       2567  2013-06-15 08:35  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\IntDevideTest.csproj

     文件       6925  2016-06-07 18:17  第3版CSharp程序设计及应用教程上机练习源程序\A2\IntDevideTest\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

............此处省略978个文件信息

评论

共有 条评论