0

CONTOH PROGRAM c#

Posted by jujur on 3:25 AM
1.MENGHITUNG TOTAL BIAYA PENGIRIMAN

Tarif pengiriman paket barang dari Surabaya ke beberapa daerah lain di Papua (Irian Jaya) adalah sebagai berikut untuk per 1 Kilogramnya :
Fax - fax Rp. 55.000,-
Jayapura Rp. 40.000,-
Manokwari Rp. 60.000,-
Merauke Rp. 50.000,-
Nabire Rp. 60.000,-
Serui Rp. 75.000,-
Sorong Rp. 40.000,-
Timika Rp. 50.000,-
Wamena Rp. 60.000,-
Kota lain – Papua Rp. 75.000,-
Buatlah program untuk menghitung total biaya pengiriman paket barang yang dikenakan ke pengirim untuk pengiriman dari Surabaya ke kota-kota di Papua
Input : Kota, Berat paket (Kg)
Output : Total Biaya




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

namespace Modul_3__14_
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" Transportasi Jasa dan Barang Hoho26");
Console.WriteLine("\n");
Console.WriteLine("+-------------------------+");
Console.WriteLine("| Kota Tujuan di Papua : |");
Console.WriteLine("| 1. Fax-Fax |");
Console.WriteLine("| 2. Jayapura |");
Console.WriteLine("| 3. Manokwari |");
Console.WriteLine("| 4. Merauke |");
Console.WriteLine("| 5. Nabire |");
Console.WriteLine("| 6. Serui |");
Console.WriteLine("| 7. Sorong |");
Console.WriteLine("| 8. Timika |");
Console.WriteLine("| 9. Wamena |");
Console.WriteLine("| 10. Kota Lain-Papua |");
Console.WriteLine("+-------------------------+");
String k;
double b;
Console.Write("Nomor Kota Tujuan = ");
k = Console.ReadLine();
Console.Write("Berat Paket (kg) = ");
b = double.Parse(Console.ReadLine());
switch (k)
{
case "1":
Console.WriteLine("Total Biaya = Rp "+(55000*b)+",-");
break;
case "2":
Console.WriteLine("Total Biaya = Rp " + (40000 * b) + ",-");
break;
case "3":
Console.WriteLine("Total Biaya = Rp " + (60000 * b) + ",-");
break;
case "4":
Console.WriteLine("Total Biaya = Rp " + (50000 * b) + ",-");
break;
case "5":
Console.WriteLine("Total Biaya = Rp " + (60000 * b) + ",-");
break;
case "6":
Console.WriteLine("Total Biaya = Rp " + (75000 * b) + ",-");
break;
case "7":
Console.WriteLine("Total Biaya = Rp " + (40000 * b) + ",-");
break;
case "8":
Console.WriteLine("Total Biaya = Rp " + (50000 * b) + ",-");
break;
case "9":
Console.WriteLine("Total Biaya = Rp " + (60000 * b) + ",-");
break;
case "10":
Console.WriteLine("Total Biaya = Rp " + (75000 * b) + ",-");
break;
}
Console.WriteLine("==========================================");
Console.Write("Terima Kasih Telah Mempercayakan Jasa Kami");
Console.ReadLine();
2.CARA MENGHITUNG SISI MIRING SEGITIGA
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static double c;
static double a;
static double b;
static void Main(string[] args)
{
Console.Write("masukan besar a:");
a = Double.Parse(Console.ReadLine());
Console.Write("masukan besar b:");
b = Double.Parse(Console.ReadLine());
c = Math.Sqrt(a * a + b * b);
Console.Write("c adalah=" + c.ToString());
Console.ReadKey();




3.MENGHITUNG PAJAK PENGHASILAN

Besarnya Penghasilan Tidak Kena Pajak di Indonesia adalah 13 Juta rupiah per-tahun. Artinya jika seseorang memiliki penghasilan sampai dengan 13 juta setahun maka penghasilan orang tersebut tidak dipotong pajak. Akan tetapi jika penghasilannya 13,5 juta maka penghasilan yang dia terima (Take Home Pay) adalah
Take Home Pay = Penghasilan – Pajak
= Rp. 13.500.000 – (5% * Rp. 13.500.000)
= Rp. 13.500.000 – Rp. 675.000
= Rp. 12.825.000,-

Berikut ini adalah tabel Tarif Pajak untuk Wajib Pajak (WP) Orang Pribadi :
Rp. 0 s.d. Rp 25 juta, tarifnya 5%
Rp. 25 juta s.d. Rp 50 juta, tarifnya 10%
Rp. 50 juta s.d. Rp 100 juta, tarifnya 15%
Rp. 100 juta s.d. Rp 200 juta, tarifnya 25%
Rp. 200 juta ke atas, tarifnya 35%
Contoh Lain Perhitungan Pajak
Penghasilan Kena Pajak WP orang pribadi = Rp 300.000.000
PPhnya adalah :
5% x Rp 25.000.000 = Rp 1.250.000
10% x Rp 25.000.000 = Rp 2.500.000
15% x Rp 50.000.000 = Rp 7.500.000
25% x Rp 100.000.000 = Rp 25.000.000
35% x Rp 100.000.000 = Rp 35.000.000
Total = Rp 71.250.000
Take Home Pay = 300.000.000 – 71.250.000 = Rp. 228.750.000
Buat Program untuk menghitung Pajak dan Take Home Pay untuk WP Orang pribadi.
Input : Besar Penghasilan
Output : Rincian Pajak Penhasilan dan Besar Take Home Pay.

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

namespace Modul_3__18_
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" Tabel Tarif Pajak untuk Wajib Pajak (WP) Orang Pribadi :");
Console.WriteLine("\n");
Console.WriteLine("+------------------------------------------------------------+");
Console.WriteLine("| |");
Console.WriteLine("| Rp. 0 s.d. Rp 25 juta, tarifnya 5% |");
Console.WriteLine("| Rp. 25 juta s.d. Rp 50 juta, tarifnya 10% |");
Console.WriteLine("| Rp. 50 juta s.d. Rp 100 juta, tarifnya 15% |");
Console.WriteLine("| Rp. 100 juta s.d. Rp 200 juta, tarifnya 25% |");
Console.WriteLine("| Rp. 200 juta ke atas, tarifnya 35% |");
Console.WriteLine("| |");
Console.WriteLine("+------------------------------------------------------------+");
Console.WriteLine("\n");
String nama;
double g, p;
Console.Write("Nama Jutawan = ");
nama = Console.ReadLine();
Console.Write("Besar gaji = ");
g = double.Parse(Console.ReadLine());
if (g <= 0)
{
Console.WriteLine("Total pajak = " + (g * 0));
Console.Write("Take Home Pay = " + (g - g));
}
else if (g <= 25000000)
{
Console.WriteLine("Total pajak = " + "Rp. " + (p = (g * 0.05)) + ",-");
Console.Write("Take Home Pay = " + "Rp. " + (g - p) + ",-");
}
else if (g <= 50000000)
{
Console.WriteLine("Total pajak = " + "Rp. " + (p = (25000000 * 0.05) + ((g - 25000000) * 0.1)) + ",-");
Console.Write("Take Home Pay = " + "Rp. " + (g - p) + ",-");
}
else if (g <= 100000000)
{
Console.WriteLine("Total pajak = " + "Rp. " + (p = (25000000 * 0.05) + (25000000 * 0.1) + ((g - 50000000) * 0.15)) + ",-");
Console.Write("Take Home Pay = " + "Rp. " + (g - p) + ",-");
}
else if (g <= 200000000)
{
Console.WriteLine("Total pajak = " + "Rp. " + (p = (25000000 * 0.05) + (25000000 * 0.1) + (50000000 * 0.15) + ((g - 100000000) * 0.25)) + ",-");
Console.Write("Take Home Pay = " + "Rp. " + (g - p) + ",-");
}
else
{
Console.WriteLine("Total pajak = " + "Rp. " + (p = (25000000 * 0.05) + (25000000 * 0.1) + (50000000 * 0.15) + (100000000 * 0.25) + ((g - 200000000) * 0.35)) + ",-");
Console.Write("Take Home Pay = " + "Rp. " + (g - p) + ",-");
}
Console.ReadLine();

4.PEMBAYARAN BELANJA

Di sebuah perbelanjaan di Surabaya diadakan Pekan Diskon, dimana perhitungan bonus dihitung bertingkat untuk total belanja senilai :
- Rp. 150.000,- diskonnya : 10%
- Rp. 275.000,- diskonnya : 15%
- Rp. 300.000,- diskonnya : 20%
- Rp. 400.000,- ke atas diskonnya : 25%
Diskon tidak dihitung sebagai akumulasi dari diskon nilai belanja dibawahnya.
Buatlah program untuk menghitung berapa nilai yang harus dibayar oleh pelanggan dengan total nilai belanja tertentu bila disertakan pula perhitungan diskonnya.
Input : Total nilai belanja.
Output : Nilai Diskon (dalam rupiah/bukan persen), Nilai yang harus dibayar


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

namespace Modul_3__11_
{
class Program
{
static void Main(string[] args)
{
double t, d, b;
Console.Write("Total Belanja = ");
t = double.Parse(Console.ReadLine());
if (t < 150000)
{
d = t * 0 / 100;
b = t - d;
Console.WriteLine("Diskon = " + d.ToString());
Console.Write("Yang Harus Dibayar = " + b.ToString());
}
else if (t < 275000)
{
d = t * 10 / 100;
b = t - d;
Console.WriteLine("Diskon = " + d.ToString());
Console.Write("Yang Harus Dibayar = " + b.ToString());
}
else if (t < 300000)
{
d = t * 15 / 100;
b = t - d;
Console.WriteLine("Diskon = " + d.ToString());
Console.Write("Yang Harus Dibayar = " + b.ToString());
}
else if (t < 400000)
{
d = t * 20 / 100;
b = t - d;
Console.WriteLine("Diskon = " + d.ToString());
Console.Write("Yang Harus Dibayar = " + b.ToString());
}
else
{
d = t * 25 / 100;
b = t - d;
Console.WriteLine("Diskon = " + d.ToString());
Console.Write("Yang Harus Dibayar = " + b.ToString());
}
Console.WriteLine("\n");
Console.Write("Terima kasih");
Console.ReadLine();

0 Comments

Copyright Jujur Soaloon Sitangang Lipan All rights reserved. Theme by Sitanggang. | Bloggerized by Soalparna.