Subscribe For Free Updates!

We'll not spam mate! We promise.

Saturday, October 10, 2015

Program C# Menentukan Nilai Terbesar Dan Terkecil Dari 2 Buah Bilangan

Silahkan di copas pada masing masing aplikasi Microsoft Visual Studionya :). Setelah itu tekan F5 untuk menjalankan programnya :D

int bil1, bil2, max, min;
            System.Console.Write("Input Bilangan I  = ");
            bil1 = int.Parse(System.Console.ReadLine());
            System.Console.Write("Input Bilangan II = ");
            bil2 = int.Parse(System.Console.ReadLine());

            max = bil1;
            if (max < bil2)
                max = bil2;
            System.Console.Write("Bilangan Terbesar : " + max);
            System.Console.ReadLine();

            min = bil2;
            if (min > bil1)
                min = bil1;
            System.Console.Write("Bilangan Terkecil : " + min);
            System.Console.ReadLine();

Sumber:http://ekasulistiawati.blogspot.co.id/2011/10/contoh-program-c-console-application.html

Socializer Widget
SOCIALIZE IT →
FOLLOW US →
SHARE IT →

0 Komentar:

Post a Comment