Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
17 строки
348 B
C++
17 строки
348 B
C++
#include <math.h>
|
|
#include <iostream>
|
|
#include <conio.h>
|
|
#include <vector>
|
|
#include "text.h"
|
|
|
|
using namespace std;
|
|
void show_histogramm(vector<size_t>bins){
|
|
for (size_t i = 0; i < bins.size(); i++) {
|
|
cout << bins[i] << "|";
|
|
for (size_t j = 0; j < bins[i]; j++)
|
|
cout << "*";
|
|
cout << endl;
|
|
}
|
|
return;
|
|
}
|