Answers for "if else syntax w3schools c++"

C++
3

if else c++

#include <iostream>
using namespace std;
int main()
{
  int a;
  cin>>a;
  if(a= 0);
  {
    cout<<"a = " << a;
  }
}
Posted by: Guest on October-05-2021
0

if else c++

if(condizione){
    //Istruzione
}
else{
    //Istruzione
}
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language