Compare commits
No commits in common. "f8c0961b3fb0842e41ac7eca155a0a64040e5c08" and "c89e5b4e6c228daebfa691a0ca8cfb1777710edd" have entirely different histories.
f8c0961b3f
...
c89e5b4e6c
@ -33,8 +33,6 @@
|
|||||||
<Add option="-fexceptions" />
|
<Add option="-fexceptions" />
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<Unit filename="main.cpp" />
|
<Unit filename="main.cpp" />
|
||||||
<Unit filename="stats.cpp" />
|
|
||||||
<Unit filename="stats.h" />
|
|
||||||
<Extensions />
|
<Extensions />
|
||||||
</Project>
|
</Project>
|
||||||
</CodeBlocks_project_file>
|
</CodeBlocks_project_file>
|
||||||
|
80
main.cpp
80
main.cpp
@ -1,63 +1,33 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <cstdlib>
|
||||||
#include <iomanip>
|
#include <ctime>
|
||||||
#include "stats.h"
|
|
||||||
|
|
||||||
using string = std::string;
|
|
||||||
|
|
||||||
//Placw in header!
|
|
||||||
template <typename T>
|
|
||||||
void printm(T m)
|
|
||||||
{
|
|
||||||
std::cout << m;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
void printlm(T m)
|
|
||||||
{
|
|
||||||
printm(m);
|
|
||||||
printm("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
typedef std::vector<double>::size_type vtype;
|
|
||||||
|
|
||||||
double promptd(string,bool*);
|
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::setprecision(3);
|
using std::cout;
|
||||||
printlm("Calculate the average and median of scores:");
|
using std::cin;
|
||||||
bool s {};
|
srand(time(nullptr));
|
||||||
std::vector<double> v {};
|
int gcount{ 1 };
|
||||||
do
|
int n { 20 };
|
||||||
|
int secret { rand()%n + 1 };
|
||||||
|
cout << "Guess a number between 1 and " << n << ": ";
|
||||||
|
int guess;
|
||||||
|
cin >> guess;
|
||||||
|
while (guess != secret)
|
||||||
{
|
{
|
||||||
auto d = promptd("Enter a score (Enter a non number to finish entry) : ",&s);
|
if (guess > secret)
|
||||||
if (s) v.push_back(d);
|
{
|
||||||
|
cout << "Number too big ; ";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cout << "Number too small ; ";
|
||||||
|
}
|
||||||
|
gcount++;
|
||||||
|
cout << "Guess again: ";
|
||||||
|
cin >> guess;
|
||||||
}
|
}
|
||||||
while(s);
|
cout << "Correct!\n";
|
||||||
printm("Score median is: ");
|
cout << "Took " << gcount << " tries.\n";
|
||||||
printlm(med(v, false));
|
|
||||||
printm("Score median (No Extremes) is: ");
|
|
||||||
printlm(med(v, true));
|
|
||||||
printm("Score average is: ");
|
|
||||||
printlm(avg(v, false));
|
|
||||||
printm("Score average (No Extremes) is: ");
|
|
||||||
printlm(avg(v, true));
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
double promptd(string message, bool *status)
|
|
||||||
{
|
|
||||||
double tr {0.0};
|
|
||||||
*status = false;
|
|
||||||
std::cout << message;
|
|
||||||
if (!(std::cin >> tr))
|
|
||||||
{
|
|
||||||
std::cin.clear();
|
|
||||||
std::cin.ignore();
|
|
||||||
return 0.0;
|
|
||||||
}
|
|
||||||
*status = true;
|
|
||||||
return tr;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
21
stats.cpp
21
stats.cpp
@ -1,21 +0,0 @@
|
|||||||
#include "stats.h"
|
|
||||||
#include <vector>
|
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
double med(std::vector<double> &scores,bool ignoreExtremes) {
|
|
||||||
const auto len = scores.size() - (ignoreExtremes && scores.size() > 2) ? 2 : 0;
|
|
||||||
sort(scores.begin(), scores.end());
|
|
||||||
using vec_size = std::vector<double>::size_type;
|
|
||||||
const vec_size middle = (vec_size) (len / 2);
|
|
||||||
if (middle%2 == 1)
|
|
||||||
return scores[middle];
|
|
||||||
else
|
|
||||||
return (scores[middle - 1] + scores[middle]) / 2.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
double avg(const std::vector<double> &scores,bool ignoreExtremes) {
|
|
||||||
auto sum = 0.0;
|
|
||||||
using vec_size = std::vector<double>::size_type;
|
|
||||||
for (vec_size i = (ignoreExtremes && scores.size() > 2) ? 1 : 0; i < scores.size() - (ignoreExtremes && scores.size() > 2) ? 1 : 0; i++) sum += scores[i];
|
|
||||||
return sum / static_cast<double>(scores.size() - (ignoreExtremes && scores.size() > 2) ? 2 : 0);
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user