summaryrefslogtreecommitdiff
path: root/3p10.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3p10.cpp')
-rw-r--r--3p10.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/3p10.cpp b/3p10.cpp
new file mode 100644
index 0000000..4863abf
--- /dev/null
+++ b/3p10.cpp
@@ -0,0 +1,34 @@
+#include <iostream>
+#include "sales_data.hpp"
+#include "sales_item.hpp"
+
+/*
+ *
+ * 3.10
+ *
+ * Not sure if i was supposed to support full sentences with whitespace but i decided to do that because it is a bit nicer.
+ */
+
+using std::string;
+using std::cout;
+using std::cin;
+using std::cerr;
+using std::clog;
+using std::endl;
+int main () {
+
+ string Phrase;
+ if(getline(cin, Phrase)) {
+ for(auto &c : Phrase) {
+ if(!ispunct(c)) {
+ cout << c;
+ }
+ }
+ cout << endl;
+ } else {
+ cout << "Error!" << endl;
+ return -1;
+ }
+
+ return 0;
+}