日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

//输入学生人数,挨个输入姓名,身高,年龄,求平均年龄,然后按身高降序排列输出...

發布時間:2024/10/12 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 //输入学生人数,挨个输入姓名,身高,年龄,求平均年龄,然后按身高降序排列输出... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.


13:52:49
N U L L 2014/12/19 13:52:49
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _1120_1210
{
??? class JieGouTi
??? {
??????? //輸入學生人數,挨個輸入姓名,身高,年齡,求平均年齡,然后按身高降序排列輸出
??????? public struct Student
??????? {
??????????? public string Name;
??????????? public decimal NianLing;
??????????? public decimal Height;
??????? }

??????? static void Main(string[] args)
??????? {
??????????? Console.WriteLine("請輸入人數:");
??????????? int n = int.Parse(Console.ReadLine());

??????????? decimal sumNianling = 0;

??????????? ArrayList arr = new ArrayList();
??????????? for (int i = 0; i < n; i++)
??????????? {
??????????????? Student ss = new Student();
??????????????? Console.Write("請輸入姓名:");
??????????????? ss.Name = Console.ReadLine();
??????????????? Console.Write("請輸入年齡:");
??????????????? ss.NianLing = decimal.Parse(Console.ReadLine());
??????????????? sumNianling += ss.NianLing;
??????????????? Console.Write("請輸入身高:");
??????????????? ss.Height = decimal.Parse(Console.ReadLine());
??????????????? arr.Add(ss);
??????????? }


??????????? for (int i = 0; i < n - 1; i++)
??????????? {
??????????????? for (int j = i + 1; j < n; j++)
??????????????? {
??????????????????? Student s1 = (Student)arr[i];
??????????????????? Student s2 = (Student)arr[j];
??????????????????? if (s1.Height < s2.Height)
??????????????????? {
??????????????????????? arr[i] = s2;
??????????????????????? arr[j] = s1;
??????????????????? }
??????????????? }
??????????? }
??????????? Console.WriteLine("按身高排序后輸出為:");
??????????? foreach (Student s in arr)
??????????? {
??????????????? Console.Write("姓名:" + s.Name);
??????????????? Console.Write("身高:" + s.Height);
??????????????? Console.Write("年齡:" + s.NianLing);
??????????????? Console.Write("\n");
??????????? }

??????????? Console.Write("平均年齡為:" + sumNianling / n);

?

??????????? Console.ReadLine();

??????? }
??? }
}

轉載于:https://www.cnblogs.com/liuyuwen900326/p/4184157.html

總結

以上是生活随笔為你收集整理的//输入学生人数,挨个输入姓名,身高,年龄,求平均年龄,然后按身高降序排列输出...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。