|  |  |  | @ -12,10 +12,10 @@ struct Input { | 
			
		
	
		
			
				
					|  |  |  |  |     size_t bin_count{}; | 
			
		
	
		
			
				
					|  |  |  |  | }; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | Input | 
			
		
	
		
			
				
					|  |  |  |  | input_data(istream& in, bool prompt) { | 
			
		
	
		
			
				
					|  |  |  |  | Input input_data(istream& in, bool prompt) { | 
			
		
	
		
			
				
					|  |  |  |  |     if (prompt) { | 
			
		
	
		
			
				
					|  |  |  |  |     cerr << "Enter number count, numbers and bin count: ";} | 
			
		
	
		
			
				
					|  |  |  |  |         cerr << "Enter number count, numbers and bin count: "; | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     size_t number_count; | 
			
		
	
		
			
				
					|  |  |  |  |     in >> number_count; | 
			
		
	
	
		
			
				
					|  |  |  | @ -26,13 +26,21 @@ input_data(istream& in, bool prompt) { | 
			
		
	
		
			
				
					|  |  |  |  |     for (size_t i = 0; i < number_count; i++) { | 
			
		
	
		
			
				
					|  |  |  |  |         in >> input.numbers[i]; | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     in >> input.bin_count; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     return input; | 
			
		
	
		
			
				
					|  |  |  |  | } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | int | 
			
		
	
		
			
				
					|  |  |  |  | main() { | 
			
		
	
		
			
				
					|  |  |  |  | int main(int argc, char* argv[]) { | 
			
		
	
		
			
				
					|  |  |  |  |     if (argc > 1) { | 
			
		
	
		
			
				
					|  |  |  |  |         cout << "argc = " << argc << endl; | 
			
		
	
		
			
				
					|  |  |  |  |         for (int i = 0; i < argc; ++i) { | 
			
		
	
		
			
				
					|  |  |  |  |             cout << "argv[" << i << "] = " << argv[i] << endl; | 
			
		
	
		
			
				
					|  |  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |  |         return 0; | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     curl_global_init(CURL_GLOBAL_ALL); | 
			
		
	
		
			
				
					|  |  |  |  |     auto in = input_data(cin, true); | 
			
		
	
		
			
				
					|  |  |  |  |     auto bins = make_histogram(in.numbers, in.bin_count); | 
			
		
	
	
		
			
				
					|  |  |  | 
 |