forked from ChicoState/ColorHex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
31 lines (25 loc) · 813 Bytes
/
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
#include <iostream>
const int RGB_HEX_LENGTH = 7;
int main(){
std::string input;
bool alnum;
do{
std::cout << "Enter a color in hex format (#RRGGBB):";
std::getline(std::cin, input);
if((input.size() != RGB_HEX_LENGTH) || (input[0] != '#')){
std::cout << "Please enter the color in hexadecimal format, starting with # followed by six hex values\n";
}
int x = 1;
alnum = true;
while(x < input.size()){
if (!(isalnum(input[x]))){
alnum = false;
std::cout << "Please enter the color in hexadecimal format, starting with # followed by six hex values\n";
break;
}
x++;
}
}while( (input.size() != RGB_HEX_LENGTH) || (input[0] != '#') || (alnum == false));
std::cout << "Your hex color is: " << input << std::endl;
return 0;
}