dev-resources.site
for different kinds of informations.
if else
Published at
11/2/2024
Categories
cpp
programming
coding
beginners
Author
Sanjar Rashidov
Main Article
Syntax of if else:
if(condition)
{
statement
}
else
{
statement
}
Agar "if"ga bergan shartimiz tog'ri bo'lsa "if"ga kiradi va berilgan ishni bajaradi, agar noto'gri bo'lsa "if"ga kirmaydi va "elsega" kirib berilgan ishni bajaradi.
#include <iostream>
using namespace std;
int main()
{
int n = 7;
if(n == 77)
{
cout << 77 << endl;
}
else
{
cout << 7 << endl
}
return 0;
}
Articles
12 articles in total
IL (Intermediate Language)
read article
CLR (Common Language Runtime)
read article
SDK vs Runtime
read article
.Net tarixi
read article
Arrays
read article
Function
read article
for loop
read article
do while loop
read article
Nested while loop
read article
while loop
read article
switch
read article
if else
currently reading
Featured ones: