blob: b635950726954b65e0ca84e233a5233483db65a7 (
plain) (
blame)
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
|
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
int main()
{
string opt;
cout << "Are input components int or float (i/f)? ";
cin >> opt;
if (opt == "i") {
int r;
int g;
int b;
cout << "Input r, g, b: ";
cin >> r >> g >> b;
cout << fixed << setprecision(2) << "Float representation: " << r / 255.0 << ", " << g / 255.0 << ", " << b / 255.0;
}
else{ if (opt == "f") {
double r;
double g;
double b;
cout << "Input r, g, b: ";
cin >> r >> g >> b;
cout << fixed << setprecision(0) << "Integer representation: " << r * 255 << ", " << g * 255 << ", " << b * 255;
}
else{
cout << "Invalid option." << endl;
return 0;}
}
cout << endl;
}
|