Latihan Fungsi Perulangan
Belajar fungsi perulangan. Dimulai dari hal yang paling simpel dulu.
Ini program buat gimana caranya keluar dari Console, tapi syaratnya harus ngetik huruf Y. Simpel kan? Check it out!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
bool lagi = true;
while (lagi)
{
Console.WriteLine("Klik y untuk exit");
Console.WriteLine("Mau lagi ?");
string jawab = Console.ReadLine();
if (jawab == "y") lagi = false;
else lagi = true;
}
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
bool lagi = true;
while (lagi)
{
Console.WriteLine("Klik y untuk exit");
Console.WriteLine("Mau lagi ?");
string jawab = Console.ReadLine();
if (jawab == "y") lagi = false;
else lagi = true;
}
}
}
}
Back to Home
0 comment:
Post a Comment