Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 467 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 467 Bytes

hello world!

6 Konsep Dasar Pemrograman :

  1. Variabel dan Tipe Data: int, float, double, char, bool, string.
  2. Operator:
  • Aritmatika : +. - , *, /, % (modulo).
  • Perbandingan : == (sama dengan), != (tidak sama dengan), >, <, >=, <=.
  • Logika : && (AND), || (OR), ! (NOT).
  • Penugasan : =, +=, -=, *=, /=, %=.
  1. Percabangan (Conditional Statements) : if, else if, else.

  2. Perulangan (Loops) : for, while, do-while.

  3. Fungsi (Functions)

  4. Array

  5. comming soon