Page 22 - E-Modul Pemrograman Dasar Kelas X
P. 22

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


                            namespace ContohMobil
                            {
                                   class Mobil

                                   {
                                          //mendeklarasikan variabel
                                          //mendeklarasikan variabel
                                          public string JenisMobil;
                                          public string WarnaMobil;
                                          public int JarakTempuh;

                                          public int JumlahBensin;
                                   }
                            }

                                 Pada program utama (Program.cs), dibuat objek baru dan kode program yang
                          lain.

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


                            namespace ContohMobil
                            {
                                   class Program
                                   {

                                          static void Main(string[] args)
                                          {
                                                 Mobil mobilku = new Mobil(); // menciptakan sebuah
                            Objek Mobil
                                                 int konsumsibensin;









                                                             13
   17   18   19   20   21   22   23   24   25   26   27