Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
270 B
C++

#include "histogram_internal.h"
#include <vector>
#include <iostream>
#include <string>
using namespace std;
int color(int bin, int max_count) {
if (max_count == 0) {
return 0;
}
int color;
return color = round((10 - (bin * 9) / max_count));
}