Answer to Question #310920 in C# for chi

Question #310920

Machine Problem 5.8.

Write a program using two-­‐dimensional arrays that lists the Odd numbers and Even numbers separately in a given 12 input values.

Sample input/out dialogue:

Enter twelve numbers: 15 20 13 35 40 16 18 20 18 20 19

Odd numbers are: 15 13 35 19

Even numbers are: 40 16 18 20 18 20



1
Expert's answer
2022-03-13T15:11:14-0400


using System;
using System.Collections.Generic;
using System.Globalization;


namespace App
{


    class Program
    {


        static void Main(string[] args)
        {


            int[,] twoDimensionalArray = new int[4, 3];


            Console.Write("Enter twelve numbers: ");
            for (int i = 0; i < 4; i++)
            {
                for (int j = 0; j < 3; j++)
                {
                    twoDimensionalArray[i, j] = int.Parse(Console.ReadLine());
                }


            }
            Console.Write("Odd numbers are: ");
            for (int i = 0; i < 4; i++)
            {
                for (int j = 0; j < 3; j++)
                {
                    if (twoDimensionalArray[i, j] % 2 != 0)
                    {
                        Console.Write("{0} ", twoDimensionalArray[i, j]);
                    }
                }
            }
            Console.Write("\nEven numbers are: ");
            for (int i = 0; i < 4; i++)
            {
                for (int j = 0; j < 3; j++)
                {
                    if (twoDimensionalArray[i, j] % 2 == 0)
                    {
                        Console.Write("{0} ", twoDimensionalArray[i, j]);
                    }
                }
            }




            Console.ReadLine();
        }


    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS