using System;
namespace readwrite_0320100003
{
class Class1
{
static void Main(string[] args)
{
string buku;
int jumlah;
Console.Write("Masukkan Judul Buku :");
buku=Convert.ToString(Console.ReadLine());
Console.Write("Masukkan Jumlah :");
jumlah=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\n {0}",buku);
Console.WriteLine("\n{0}",jumlah);
Console.ReadLine();
}
}
}
No comments:
Post a Comment