Contoh Program Array 1 Dimensi | Syntax Array 1 Dimensi


Nama : Afit Santoso
NPM : 20312052
Kelas : IF 20 B
Prodi : S1 Informatika

syntax yang digunakan

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

namespace array
{
    class Program
    {
        static void Main(string[] args)
        {
            int jumlah, urutan;

            Console.Write("Masukkan jumlah data : ");
            jumlah = int.Parse(Console.ReadLine());

            string[] nama = new string[jumlah];

            urutan = 1;
            int x = 0;
            while (x < nama.Length)
            {
                Console.Write("Masukkan Nama ke-" + urutan + " ");
                nama[x]= Console.ReadLine();
                urutan++;
                x++;
            }
            int y = 0;
            while (y < nama.Length)
            {
                Console.WriteLine("nama ke -" + urutan + " : " + nama[y]);
                urutan++;
                y++;
            }
             Console.ReadLine();

        }
    }
}



Tidak ada komentar:

Posting Komentar

Tugas Rekayasa Perangkat Lunak

 Nama : Afit Santoso NPM : 20312052 Kelas IF 20 AC dibawah ini link file donlod SRS https://docs.google.com/document/d/1JF-E8ct4PIH6w_y23uSy...