if statements in java in hindi
Introduction
if statement के लिए if keywords का use किया जाता है।
java statement सबसे simple decision-making statement है।
इस keyword के बाद bracket में conditions दी जाती है। यह condition variable से related भी हो सकती है |
और कोई normal condition भी हो सकती है। condition के बाद statement को block कर दिया जाता है और condition true होने पर सभी statement execute हो जाते हैं और यदि condition true नहीं है तो पूरा if block skip कर दिया जाता है |
syntax if statements
If (Condition)
{
statements;
———
———
}
program
if a = 5, b = 3
if( a > b)
{
system.out.println(“A is greater than B”);
}
if-else-statements