Ini adalah Contoh Program Operator dalam Program C#. Program ini untuk mengeluarkan suatu data perhitungan, programnya sebagai berikut :
using System;
namespace Operator
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Demo3
{
/// <summary>
///
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
decimal a,p=5,x=4;
a=p+x;
Console.WriteLine("Angka : {0} + {1} = {2}",p,x,a);
Console.ReadLine();
}
}
}
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment