Revision history of "컴퓨터프로그래밍및실습 (2022년)/조건문"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 14:31, 20 July 2022Swpark talk contribs 3,513 bytes +3,513 Created page with "=== if 문 === <syntaxhighlight lang="java"> public class IfExample { public static void main(String[] args) { int score = 93; //----------------------------------------- // if 문 //----------------------------------------- if (score >= 90) { System.out.println("A"); } if (score < 90) { System.out.println("B"); } //----------------------------------------- //..."