Horje
c++ if example Code Example
c++ if example
if (20 > 18) {
  cout << "20 is greater than 18";
}
if c++
int x = 20;
int y = 18;
if (x > y) {
  cout << "x is greater than y";
}
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
c++ remove space from string Code Example c++ remove space from string Code Example
linked list with classes c++ Code Example linked list with classes c++ Code Example
inline function in cpp Code Example inline function in cpp Code Example
recursive binary search Code Example recursive binary search Code Example
change to lowercase character c++ Code Example change to lowercase character c++ Code Example

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