Answers for "c++ if statement or"

C++
5

c++ if in equivalent

#include <algorithm>
#include <vector>

if ( std::find(vec.begin(), vec.end(), item) != vec.end() )
   do_this();
else
   do_that();
Posted by: Guest on July-09-2020
1

why does my if statement still run when the its not true c++

If the condition is true, result is set to 1, so much is true.
But in the other case, the content of result is undefined - 
so it can be anything,
even allowing the compiler to modify it at will as part of an 
optimization. 
You should either initialize result at its declaration,or add an else 
branch where you set it to the alternative value.
Posted by: Guest on March-20-2020
0

C++ if else

#include<iostream>
using namespace std;

int main()
{
    int grade;

    cin >> grade;

    if( grade >= 60 )
    {
        cout << "You Pass!" << endl;
    }
    else
    {
        cout << "You Fail..." << endl;
    }

    return 0;
}
Posted by: Guest on September-19-2020
0

C++ if and

//C++

int a = 1;
int b = 2;

if (a == 1){
	std::cout << "a equals 1!";
}

if (b == 2){
	std::cout << "b equals 2!";
}

if (a == 1 && b == 2){
	std::cout << "a equals 1, and b equals 2!"
}
Posted by: Guest on June-20-2021

Browse Popular Code Answers by Language