C++
#include <iostream>
using namespace std;
int main()
{
bool a = true;
int b = 0;
if (a) b = 4;
else b = -4;
cout << b;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
C++
#include <iostream>
using namespace std;
int main()
{
bool a = true;
int b = 0;
if (a) b = 4;
else b = -4;
cout << b;
return 0;
}