forked from ChicoState/ColorHex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
46 lines (35 loc) · 1.13 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <iostream>
using std::string;
using std::cout;
using std::getline;
using std::endl;
using std::cin;
const int RGB_HEX_LENGTH = 7;
bool isValidHex(std::string input) {
for(int i=0; i<input.length(); i++) {
if(input[i] != 'a' || input[i] != 'b' || input[i] != 'c' || input[i] != 'd' || input[i] != 'e' || input[i] != 'f' || !isdigit(input[i])) {
return false;
}
}
return true;
}
int main(){
string input;
do{
std::cout << "Enter a color in hex format (#RRGGBB):\n";
std::getline(std::cin, input);
if(input[0] != '#') {
std::cout << "Input must begin with '#'\n";
}
for(int i=0; i<input.size(); i++) {
if(!isValidHex) {
std::cout << "Input must be a number between 0-9 and or a letter between a - f\n";
}
}
if( input.size() != RGB_HEX_LENGTH ){
cout << "Please enter the color in hexadecimal format, starting with # followed by six hex values\n";
}
}while( input.size() != RGB_HEX_LENGTH );
cout << "Your hex color is: " << input << endl;
return 0;
}