Answers for "& in c and c++"

C++
0

and c++

#include<iostream>
using namespace std;
int main(){
	int a;
	cin>>a;
	if(a >= 20 && a <= 30){
		cout<<"Il numero inserito è compreso tra 20 e 30";
	}
	else{
		cout<<"Il numero inserito non è compreso tra 20 e 30";
	}
}
Posted by: Guest on April-21-2021
1

&& c++

//if both statements are true, return True
//if neither is true or one is false, return True
Posted by: Guest on May-07-2021

Browse Popular Code Answers by Language