Horje
if else c++ Code Example
if else c++
#include <iostream>
using namespace std;
int main()
{
  int a;
  cin>>a;
  if(a= 0);
  {
    cout<<"a = " << a;
  }
}

if else c++
if(condizione){
    //Istruzione
}
else{
    //Istruzione
}
if c++
#include<iostream>
using namespace std;
int main(){
	int eta; 
	cout<<"Ciao Utente inserisci la tua eta'! "<<"\n";
	cin>>eta;
	if(eta >= 18){
		cout<<"Benvenuto al cinema!";
	}
}




Cpp

Related
how to type a vertical stack program c++ Code Example how to type a vertical stack program c++ Code Example
how to compile with libstdc++ fedora Code Example how to compile with libstdc++ fedora Code Example
how to get the time in c++ as string Code Example how to get the time in c++ as string Code Example
using of and || c++ Code Example using of and || c++ Code Example
1047. Remove All Adjacent Duplicates In String solution leetcode in c++ Code Example 1047. Remove All Adjacent Duplicates In String solution leetcode in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10