MENCARI NILAI MAKSIMUM
using System;
namespace max
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class maksimum
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
int a,b,c;
Console.Write("A = ? ");
a=Convert.ToInt32(Console.ReadLine());
Console.Write("B = ? ");
b=Convert.ToInt32(Console.ReadLine());
Console.Write("C = ? ");
c=Convert.ToInt32(Console.ReadLine());
if ((a>b && a>c) && (b>c || b<c))
Console.WriteLine("Bilangan terbesar adalah {0}",a);
else
{
if ((b>a && b>c) && (a>c || a<c))
Console.WriteLine("Bilangan terbesar adalah {0}",b);
else
Console.WriteLine("Bilangan terbesar adalah {0}",c);
}
Console.ReadLine();
}
}
}
Jika sudah dilakukan proses debugging, maka tampilannya adalah sebagai berikut :
Tidak ada komentar:
Posting Komentar