summaryrefslogtreecommitdiff
path: root/5p18.cpp
diff options
context:
space:
mode:
Diffstat (limited to '5p18.cpp')
-rw-r--r--5p18.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/5p18.cpp b/5p18.cpp
new file mode 100644
index 0000000..eb6ea7f
--- /dev/null
+++ b/5p18.cpp
@@ -0,0 +1,35 @@
+
+/*
+ *
+ * 5.18
+ *
+ *
+ */
+
+int main () {
+
+ /*
+ (a) Corrected versions
+
+ do {
+ int v1, v2;
+ cout << "Please enter two numbers to sum:" ;
+ if (cin >> v1 >> v2)
+ cout << "Sum is: " << v1 + v2 << endl;
+ } while (cin);
+
+ (b)
+ int ival;
+ do {
+ // . . .
+ } while (ival = get_response());
+
+ (c)
+ int ival;
+ do {
+ ival = get_response();
+ } while (ival);
+
+ */
+ return 0;
+}