TutorialsBazaar

← Back

Learn Java Programming

Module 7/20

Core Java - Conditional Statements

Module 7 of 20

if, else, and switch are used for decision making in Java.

Java में decision making के लिए if, else और switch का उपयोग होता है।

#include <stdio.h>

int main() {
    printf("Welcome to Core Java - Conditional Statements");
    return 0;
}