Skip to content

Instantly share code, notes, and snippets.

View darkblue14's full-sized avatar

Muhammad Fajri darkblue14

View GitHub Profile
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
// Hitung mean
double mean(const vector<double>& data) {
double sum = 0;
@darkblue14
darkblue14 / 24106050007_tugas_0914
Created September 14, 2025 13:46
Program C++ untuk Mean, Median, Modus, dan Kuartil
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
// Hitung mean
double mean(const vector<double>& data) {
double sum = 0;