This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() { | |
float a, b; | |
char sign; | |
cout << "Enter first number: "; | |
cin >> a; | |
cout << "Enter second number: "; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() { | |
int num; | |
cout << "Enter number from 1 to 100: "; | |
cin >> num; | |
if (num < 1 || num > 100) { | |
cout << "Error" << endl; |