1 cout << "[";
2 int pos = value;
3 for (int i = 0; i < 100;i++) {
4 if (i < pos)
5 {
6 cout << "=";
7 }
8 else if (i == pos)
9 {
10 cout << ">";
11 }
12 else
13 {
14 cout << " ";
15 }
16 }
17
18 cout << "] " << int(value) << " %\r";
19 cout.flush();