blob: 61ec88f98a877ad7d279d00a4e0883e1766a608d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Name: Musa Ahmed, Course: CST116, Lab # 0, Learn how to debug and how to use an IDE as well as GitHub
#include <iostream>
#include <iomanip>
#include <string>
#include <list>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
string n1;
string n2;
string n3;
string n4;
float g1;
int i1;
cout << "enter a name" << endl;
cin >> n1;
cout << "enter a gpa" << endl;
cin >> g1;
cout << "enter an income" << endl;
cin >> i1;
}
|