0% found this document useful (0 votes)
14 views2 pages

Using System - WPS Office

Contoh code pembuatan website

Uploaded by

Neni Andriana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

Using System - WPS Office

Contoh code pembuatan website

Uploaded by

Neni Andriana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

using System;

class Program

static void Main(string[] args)

string vnik, vnm;

int gp, tj, ti, ta, pot, gb;

Console.WriteLine("Program Gaji Karyawan");

Console.WriteLine();

Console.Write("NIK: ");

vnik = Console.ReadLine();

Console.Write("Nama Karyawan: ");

vnm = Console.ReadLine();

Console.Write("Gaji Pokok: ");

gp = int.Parse(Console.ReadLine());

Console.Write("Tunjangan Jabatan: ");

tj = int.Parse(Console.ReadLine());

Console.Write("Tunjangan Istri: ");

ti = int.Parse(Console.ReadLine());

Console.Write("Tunjangan Anak: ");

ta = int.Parse(Console.ReadLine());

Console.Write("Potongan: ");
pot = int.Parse(Console.ReadLine());

gb = gp + tj + ti + ta - pot;

Console.WriteLine();

Console.WriteLine("Hallo Neni Andriana, gaji bersih kamu sebesar Rp " + gb + " Rupiah");

Console.ReadKey();

You might also like