Ini adalah sebuah Contoh program lagi yang dibuat dengan menggunakan Bahasa C#, yaitu Program Variabel, Konstanta dan Tipe Data :
using System;
namespace Variable.Const_024
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
int x=4;
Console.WriteLine("Nama : Putri Ayu");
Console.WriteLine("TTL : Serang, 11 Feb 1992");
Console.WriteLine("Prodi : MI");
Console.Write("IP : {0}",x);
Console.ReadLine();
Console.WriteLine("\n\nNote");
Console.WriteLine("variabel adalah x \nKonstanta adalah 4 \nTipe Data adalah Integer");
Console.ReadLine();
}
}
}
Contoh Program C# Variabel Konstannta dan Tipe Data
Posted by
putri
, Sunday, March 6, 2011 at 1:48 PM, in
Subscribe to:
Post Comments (Atom)
1 comments:
completed... i found here.. thanks! keep programming
Post a Comment