Table of Contents
Sample Code
Output
Home Backend Development C++ Execute if and else statements simultaneously in C/C++

Execute if and else statements simultaneously in C/C++

Sep 05, 2023 pm 02:29 PM
if-else c/c++ implement

Execute if and else statements simultaneously in C/C++

In this section, we will see how to execute both if and else parts in C or C code. This solution is a bit tricky.

When if and else are executed one after another, it is as if the statement without if-else is executed. But here we will see how to execute them sequentially if they exist.

Sample Code

#include <iostream>
using namespace std;
int main() {
   int x = 10;
   if(x > 5)   {
      lebel_1: cout << "This is inside if statement" <<endl;
      goto lebel_2;
   }else{
      lebel_2: cout << "This is inside else statement" <<endl;
      goto lebel_1;
   }
}
Copy after login

Output

This is inside if statement
This is inside else statement
This is inside if statement
This is inside else statement
This is inside if statement
This is inside else statement
This is inside if statement
This is inside else statement
....
....
....
Copy after login

The program will act as an infinite loop, but here the if block and else block are executed at the same time. After the first check, condition checks have no real impact on the output.

Note: Here we use a goto statement to force control in the if block to be sent to else , and then else to if. But using goto statement is not good. This makes it difficult to trace a program's control flow.

The above is the detailed content of Execute if and else statements simultaneously in C/C++. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Python script to be executed every 5 minutes Python script to be executed every 5 minutes Sep 10, 2023 pm 03:33 PM

Automation and task scheduling play a vital role in streamlining repetitive tasks in software development. Imagine there is a Python script that needs to be executed every 5 minutes, such as getting data from an API, performing data processing, or sending periodic updates. Running scripts manually so frequently can be time-consuming and error-prone. This is where task scheduling comes in. In this blog post, we will explore how to schedule a Python script to execute every 5 minutes, ensuring it runs automatically without manual intervention. We will discuss different methods and libraries that can be used to achieve this goal, allowing you to automate tasks efficiently. An easy way to run a Python script every 5 minutes using the time.sleep() function is to utilize tim

How to use Python for scripting and execution in Linux How to use Python for scripting and execution in Linux Oct 05, 2023 am 11:45 AM

How to use Python to write and execute scripts in Linux In the Linux operating system, we can use Python to write and execute various scripts. Python is a concise and powerful programming language that provides a wealth of libraries and tools to make scripting easier and more efficient. Below we will introduce the basic steps of how to use Python for script writing and execution in Linux, and provide some specific code examples to help you better understand and use it. Install Python

How did our company completely eliminate 2,000 if-else in the project? How did our company completely eliminate 2,000 if-else in the project? Jul 26, 2023 pm 04:29 PM

First, get all the types in the assembly that implement the common interface IOrderOutputStrategy. Then, we create a dictionary, the name of the displayName of the formatter is key, and the type is value. Then select the formatter type from the dictionary and try to instantiate the policy object.

What are the differences between php and c# What are the differences between php and c# Jun 02, 2023 pm 01:45 PM

The differences between php and c# are: 1. The language type system is different, PHP is dynamic, while C# is static type; 2. The platforms used are different, PHP can be cross-platform, while C# is exclusive to Windows; 3. The programming paradigm is different, PHP It supports object-oriented, procedural and functional programming, and C# is more inclined to object-oriented programming; 4. The execution speed is different, PHP is faster, and C# is relatively slow; 5. The application scenarios are different, PHP is used in web development, servers, etc. C# is used for Windows desktop and web applications.

How to write PHP code in the browser and keep the code from being executed? How to write PHP code in the browser and keep the code from being executed? Mar 10, 2024 pm 02:27 PM

How to write PHP code in the browser and keep the code from being executed? With the popularization of the Internet, more and more people have begun to come into contact with web development, and learning PHP has also attracted more and more attention. PHP is a scripting language that runs on the server side and is often used to write dynamic web pages. However, during the exercise phase, we want to be able to write PHP code in the browser and see the results, but we don't want the code to be executed. So, how to write PHP code in the browser and keep it from being executed? This will be described in detail below. first,

How to perform Brown-Forsythe test in Python How to perform Brown-Forsythe test in Python Aug 31, 2023 pm 11:53 PM

The Brown-Forsythe test is a statistical test used to determine whether the variances of two or more groups are equal. Levene's test uses the absolute deviation from the mean, while the Brown-Forsythe test uses the deviation from the median. The null hypothesis used in the test is as follows - H0: The variances of the groups (population) are equal. The alternative hypothesis is that the variances of the groups (population) are not equal. - H1: The variances of the groups (population) are not equal. To perform the test, we calculate the median of each group and its correlation The absolute deviation of the number of digits. We then calculate the F-statistic based on the variance of these deviations. Assume that the calculated F statistic is greater than the critical value in the F distribution table. In this case, we reject the null hypothesis and conclude that the variances of the groups are not equal. In Python, sc

One article explains in detail vscode configuration C/C++ running environment [nanny-level teaching] One article explains in detail vscode configuration C/C++ running environment [nanny-level teaching] Feb 27, 2023 pm 07:33 PM

How to develop C/C++ in VScode? How to configure the C/C++ environment? The following article will share with you the VScode configuration C/C++ running environment tutorial (nanny-level teaching). I hope it will be helpful to you!

How to write if-else elegantly in Java How to write if-else elegantly in Java Apr 29, 2023 pm 10:04 PM

1. The switch method has good effects on enumeration value processing. For example, different processing needs to be done for different order statuses. Because the status values ​​are limited, then we can directly use switch to do different processing for different statuses: Original Statement publicvoidbefore(Integerstatus){if(status==1){System.out.println("Order not received");}elseif(status==2){System.out.println("Order not shipped") ;}elseif(status==3

See all articles