Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธีการป้อนค่าหลายค่าจากผู้ใช้ในหนึ่งบรรทัดใน C #?


ใช้ while loop เพื่อป้อนค่าหลายค่าจากผู้ใช้ในบรรทัดเดียว

สมมติว่าคุณต้องได้องค์ประกอบของเมทริกซ์ รับมันโดยใช้ Console.ReadLine() ดังที่แสดงด้านล่าง -

Console.Write("\nEnter elements - Matrix 1 : ");
for (i = 0; i < m; i++) {
   for (j = 0; j < n; j++) {
      arr1[i, j] = Convert.ToInt16(Console.ReadLine());
   }
}

ต่อไปนี้เป็นตัวอย่างที่แสดงให้เห็นว่าเราสามารถป้อนค่าต่างๆ จากผู้ใช้ได้อย่างไร -

ตัวอย่าง

using System;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[,] arr1 = new int[10, 10];
         int i, j;

         Console.Write("\nEnter Matrix elements: ");
         for (i = 0; i < 3; i++) {
            for (j = 0; j < 3; j++) {
               arr1[i, j] = Convert.ToInt16(Console.ReadLine());
            }
         }

      }
   }
}

ผลลัพธ์

Enter Matrix elements: