DEV Community

Sanjar Rashidov
Sanjar Rashidov

Posted on

2 1 1 1 1

if else

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;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay