Skip to content

Instantly share code, notes, and snippets.

@mochadwi
Last active November 14, 2016 02:24
Show Gist options
  • Save mochadwi/cab821a4123eed2217ce4df48adeb84f to your computer and use it in GitHub Desktop.
Save mochadwi/cab821a4123eed2217ce4df48adeb84f to your computer and use it in GitHub Desktop.
Algoritma Pemilihan (Selection) - Program N Kasus
program kasus_2;
var
nilai: real;
indeks: char;
begin
write('Masukkan nilai: ');
readln(nilai);
{ Pemilihan - N Kasus }
if nilai > 80 then
indeks := 'A'
else if nilai > 70 then
indeks := 'B'
else if nilai > 60 then
indeks := 'C'
else if nilai > 40 then
indeks := 'D'
else
indeks := 'E'
writeln(indeks);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment