summaryrefslogtreecommitdiffstats
path: root/C++/getlineAndCinPractice/getLineCin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'C++/getlineAndCinPractice/getLineCin.cpp')
-rw-r--r--C++/getlineAndCinPractice/getLineCin.cpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/C++/getlineAndCinPractice/getLineCin.cpp b/C++/getlineAndCinPractice/getLineCin.cpp
new file mode 100644
index 0000000..8f237f0
--- /dev/null
+++ b/C++/getlineAndCinPractice/getLineCin.cpp
@@ -0,0 +1,67 @@
+// Name: msglm
+// Introduction:
+// Description:
+
+
+#include <iostream>
+#include <string>
+#include <iomanip>
+using namespace std;
+int main() {
+
+ string name;
+ string major;
+ string favorite;
+ int gradyear;
+ int year;
+ float GPA;
+ //input
+ cout << "Enter Full Name: ";
+ getline(cin, name);
+
+ cout << "Enter year you started college?: ";
+ cin >> year;
+ cin.ignore();
+
+ cout << "What is your major: ";
+ getline(cin, major);
+
+ cout << "What is your anticipated graduation year?: ";
+ cin >> gradyear;
+ cin.ignore();
+
+ cout << "What is your GPA?: ";
+ cin >> GPA;
+ cin.ignore();
+
+ cout << "What is your favorite subject: ";
+ getline(cin, favorite);
+
+ //output
+
+ //system(cls);
+ //System calls are not portable and are a surefire way of locking your software to one system!
+ //System should be avoided whenever possible for security holes too as unsanitized input could allow shell commands to be executed. Not applicable in this case, but it's a bad habit to get started on.
+ //While this is not as nice looking, it's portable.
+
+ cout << "\033[2J\033[1;1H";
+
+ cout << "Name: " << name << endl;
+ cout << "Year began college: " << year << endl;
+ cout << "Your Major: " << major << endl;
+ cout << "Your anticipated graduation year: " << year << endl;
+ cout << "Your GPA: " << GPA << endl;
+ cout << "Your favorite subject: " << favorite << endl;
+ return 0;
+
+
+
+
+}
+
+/*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ * You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+