Sekarang saya mau tutorial cara membuat contoh program kondisi(if) di Visual Studio 2012
Buka Visual Studio 2012 , pilih New Project dan beri nama "Kondisi"
setelah itu desain aplikasinya seperti yang dibawah ini .
trus desain
textbox1 = nis
textbox2 = nama
textbox3 = tugas
textbox4 = u_harian
textbox5 = u_semester
textbox6 = n_akhir
textbox7 = n_huruf
klik tombol hitung 2x , terus masukkan code di bawah ini
n_akhir.Text = Val(50 / 100 * tugas.Text) + Val(20 / 100 * u_harian.Text) + Val(30 / 100 * u_semester.Text)
If n_akhir.Text > 85 Then
n_huruf.Text = "A"
ElseIf n_akhir.Text > 75 Then
n_huruf.Text = "B"
ElseIf n_akhir.Text > 60 Then
n_huruf.Text = "C"
Else
n_huruf.Text = "D"
End If
If n_akhir.Text > 85 Then
n_huruf.Text = "A"
ElseIf n_akhir.Text > 75 Then
n_huruf.Text = "B"
ElseIf n_akhir.Text > 60 Then
n_huruf.Text = "C"
Else
n_huruf.Text = "D"
End If