码迷,mamicode.com
首页 > 编程语言 > 详细

编写程序,计算数组中奇数之和和偶数之和。

时间:2020-11-23 12:16:41      阅读:8      评论:0      收藏:0      [点我收藏+]

标签:依次   技术   数组   nbsp   区分   元素   lse   bsp   code   

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

namespace odds
{
    class Program
    {
        static void Main(string[] args)
        {
            List<string> str = new List<string>();
            int len = 0;
            int jsum =0;
            int osum =0;
            Console.WriteLine("输出数组的元素,以q结束");
            while (true)
            {
                string input = Console.ReadLine();
                if (input.Equals("q") == false) //如果输入的不是q(区分大小写),则增加记录
                    str.Insert(len++, input);
                else
                    break;
            }

            //Console.WriteLine("输出数据长度");
           // Console.WriteLine(len); //结果说明数据是按行存在链表中的,每行占链表一个值
           // Console.WriteLine("依次输出链表中数据");
           // for (int i = 0; i < len; i++)
           // {
            //    Console.WriteLine(str[i]); //依次输出链表每个值,也是依次输出每行
            //}
            //Console.WriteLine("依次输出每个值");
            string[][] every = new string[len][]; //交叉数组,行固定,为上面得到的行数,每一行的长度不定(每行字符间以空格或其他分割)
            for (int i = 0; i < len; i++)
            {
                every[i] = str[i].Split(); //C#对空格的分割方式之一,如果是其他分割方式,就需要也使用上面的链表分割每行的方式了
            }
            //for (int i = 0; i < len; i++)
            //{
            //    for (int j = 0; j < every[i].Length; j++)
              //  {
             //       Console.WriteLine(every[i][j]);
            //    }
          //  }
            
            for (int i = 0; i < len; i++)
            {
                for (int j = 0; j < every[i].Length; j++)
                {
                    int aa;
                   // Console.WriteLine(every[i][j]);
                    aa = int.Parse(every[i][j]);
                    if ((aa % 2) == 1)
                    {
                        jsum += aa;
                    }
                    else {
                        osum += aa;
                    }
                }
            }
            Console.WriteLine("奇数之和为:");
            Console.WriteLine(jsum);
            Console.WriteLine("偶数之和为:");
            Console.WriteLine(osum);
            Console.ReadKey();
        }
    }
}

技术图片

 

编写程序,计算数组中奇数之和和偶数之和。

标签:依次   技术   数组   nbsp   区分   元素   lse   bsp   code   

原文地址:https://www.cnblogs.com/a155-/p/14001880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!