tj30sharp

 

 

namespace ConsoleApplication1

{

    class Program

    {

        // Created By Mohammadreza Bitarafan //

        static void Main(string[] args)

        {

            Console.Title = "Ostad Akhlaghi";

            Console.Write("Enter Row or Column:");

            int row = Convert.ToInt32(Console.ReadLine());

            int column = row;

            int[,] matrix = new int[row, column];

            int k = 0;

            int[] array = new int[row * column];

            Console.WriteLine("Enter Your Numbers:");

            for (int i = 0, r = 3; i < matrix.GetLength(0); r += 3, i++)

            {

                for (int j = 0, l = 10; j < matrix.GetLength(1); l += 5, j++)

                {

                    Console.SetCursorPosition(l, r);

                    matrix[i, j] = Convert.ToInt32(Console.ReadLine());

                }

            }

            for (int i = 0; i < matrix.GetLength(0); i++)

            {

                for (int j = 0; j < matrix.GetLength(1); j++)

                {

                    array[k] = matrix[i, j];

                    Console.Write("   " + array[k]);

                    k++;

                }

            }

            Console.ReadKey();

        }

    }

}

موافقین ۰ مخالفین ۰ ۹۳/۱۲/۱۱
Mohammadreza Bitarafan

نظرات  (۰)

هیچ نظری هنوز ثبت نشده است

ارسال نظر

ارسال نظر آزاد است، اما اگر قبلا در بیان ثبت نام کرده اید می توانید ابتدا وارد شوید.
شما میتوانید از این تگهای html استفاده کنید:
<b> یا <strong>، <em> یا <i>، <u>، <strike> یا <s>، <sup>، <sub>، <blockquote>، <code>، <pre>، <hr>، <br>، <p>، <a href="" title="">، <span style="">، <div align="">
تجدید کد امنیتی