Page 76 - E-Modul Pemrograman Dasar Kelas X
P. 76
Sebagai contoh, adanya beberapa kesalahan yang terjadi pada program berikut.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a, b;
double c, d;
a = 100;
b = 50;
c = 7.5;
d = 2;
double luas;
Console.Write ("Masukkan luas lingkaran = ");
luas = int.Parse(Console.ReadLine());
d = Math.sqrt(luas / 3.1416);
if (a == b)
Console.WriteLine ("Nilai " + sama dengan
nilai " + b);
if (c != d)
68