Java의 프로그램 제어문
3812 단어 motivationjavagoalbeginners
오늘은 다양한 if 문에 대한 예를 들어 설명하겠습니다.
if 문 -
여기서 우리는 Ram이 제 시간에 숙제를 하면 보상을 받을 것이라는 조건을 보여줍니다. Java 프로그래밍의 if 문도 프로그램의 흐름과 의사 결정을 제어하기 위해 프로그래밍에 사용됩니다.
구문 -
if(condition)
{
statements
}
public class UsingIfStatement {
public static void main(String[] args) {
// here we demonstrate using the if statement in a program.
int numberOfBoys = 29;
if (numberOfBoys == 29) {
System.out.println("There are twenty-nine male students in the class.");
}
System.out.println("This statement is general statement and is independent of if block .");
}
}
if-else 문 -
구문 -
if(condition)
{
statements
}
else(condition)
{
statements
}
예 -
public class UsingIfElseStatement {
/*
* here we make a simple program which checks for the number to be even or odd using if else block.
*/
public static void main(String[] args) {
int checkNumber = 7;
System.out.println("Check whether number 7 is even or odd? ");
if (checkNumber % 2 == 0) {
System.out.println("Number is even.");
} else {
System.out.println("Number is odd.");
}
}
}
중첩된 if 문 -
예 -
public class NestedIfStatements {
/*in this program we learn how to use nested if statement in java
*
* here if first condition evaluates to true then second condition is checked to produce an output.
*/
public static void main(String[] args) {
int number1 = 4, number2 = -1;
if (number1 > 10) {
if (number2 > 0) {
System.out.println("Number1 is = " + number1 + " and " + "Number2 is = " + number2);
}
}
else{
System.out.println("Sorry number1 and number2 didn't fall in range of 10 and greater than 20.");
}
}
}
if else-if else 사다리 -
+
public class UsingIfElseifElseStatement {
/*
*here we check that whether a number is positive, negative or equal to zero.
*/
public static void main(String[] args) {
int checkNumber = 7;
System.out.println("Check the number 7 whether it id positive, negative or zero. ");
if (checkNumber > 0) {
System.out.println("Number is Positive.");
} else if (checkNumber < 0) {
System.out.println("number is Negative.");
} else {
System.out.println("Number is zero.");
}
}
}
그래서, 내일 프로그램 제어 문에서 하루 동안 우리는 그 안에 남아 있는 다른 주제에 대해 논의할 것입니다. 그때까지 학습은 계속 성장할 것입니다.
불일치가 발생하면 자유롭게 지적하거나 제안하십시오.
Reference
이 문제에 관하여(Java의 프로그램 제어문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/kumarsanskar/program-control-statements-in-java-3bd0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)