// con1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include using namespace std; int main() { double x; int a = 5, b; b %= a; if (!((a < 3) || (a>10))) cout << "ggg"; b = a << 3; // b = a times 2 to the power of 3 // b = a * 8 b = a >> 2; // b = a / 4; if (a) // if (a!=0) cout << " "; if (!a) // if (a==0) cout << " "; return 0; }