contoh program diskon dengan c#
Contoh program diskon dengan c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication5
{
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...
Contoh Program Konversi Suhu dengan c#
Diposting oleh
elpina yanti
0
komentar
Contoh Program Konversi Suhu
using System;using System.Collections.Generic;using System.Linq;using System.Text;
namespace suhu1{ class Program { static void Main(string[] args) { double c, f, k, r;
Console.WriteLine("-------CONTOH...
Contoh Program Input/output dengan C#
Diposting oleh
elpina yanti
1 komentar
Contoh Program input/output c#
using System;using System.Collections.Generic;using System.Linq;using System.Text;
namespace ConsoleApplication1{ class Program { static void Main(string[] args) { string nama_lengkap, nama_panggilan, tempat_lahir, alamat, input, nim, telepon; int umur; ...
Langganan:
Postingan (Atom)