美文网首页
某百货商场当日消费积分最高的8名顾客,他们的积分分别是18、25

某百货商场当日消费积分最高的8名顾客,他们的积分分别是18、25

作者: 一头靓发的程序员 | 来源:发表于2018-12-27 17:39 被阅读0次

    2018-12-19某百货商场当日消费积分最高的8名顾客,他们的积分分别是18、25、7、36、13、2、89、63.编写程序找出最低的积分及它在数组中的原始位置。

    using System.Text;

    namespace ConsoleApplication3

    {

    class Program

    {

    static void Main(string[] args)

    {

    int min;

    int index = 0;

    int[] points = { 18, 25, 7, 36, 13, 2, 89, 63 };

    for (int i = 0; i <= 7; i++)

    {

    min = points[0];

    if (points[i] < min)

    {

    min = points[1];

    index = i;

    }

            }

            Console.WriteLine("最小值为{0},所在的位置{1}",points [ index ],index+1);

            Console.ReadKey();

    相关文章

      网友评论

          本文标题:某百货商场当日消费积分最高的8名顾客,他们的积分分别是18、25

          本文链接:https://www.haomeiwen.com/subject/nordlqtx.html