From 9b931cfed1551961c8bbb93b21051104c0c4c716 Mon Sep 17 00:00:00 2001 From: Oskar Date: Wed, 7 Aug 2024 22:39:51 +0200 Subject: more exercises --- vector-index-example.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 vector-index-example.cpp (limited to 'vector-index-example.cpp') diff --git a/vector-index-example.cpp b/vector-index-example.cpp new file mode 100644 index 0000000..f6a0e43 --- /dev/null +++ b/vector-index-example.cpp @@ -0,0 +1,32 @@ +#include +#include +#include "sales_data.hpp" +#include "sales_item.hpp" + +/* + * + * Description + * + * + */ + +using std::string; +using std::cout; +using std::cin; +using std::cerr; +using std::clog; +using std::endl; +using std::vector; +int main () { + + vector scores(11, 0); // 11 buckets, all initially 0 + unsigned grade; + while (cin >> grade) { + if (grade <= 100) { + ++scores[grade/10]; + // scores[grade/10] += 1; // basically equivalent + } + } + + return 0; +} -- cgit v1.2.3