15
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int nilai= 1;
8
int input;
9
while (nilai<= 5) {
10
Console.Write("Isi Nilai : ");
11
input = Convert.ToInt32(Console.ReadLine());
12
nilai++;
13
}
14
}
15
}
Cached Result
Ingrese Lado:
>