HYE..

im new at this forum.. can anyone help me to solve this kind of prob.. it base on C++ sourcecode..

try to get the input..

Enter first name:
Enter last name:
Enter age:
Enter score:

the output will appear like this..

Enter first name:zack
Enter last name:mony
Enter age:18
Enter score:100

Enter first name:zack
Enter last name:mony
Enter age:18
Enter score:100


1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;

int main()
{
string name;
cout<<"Enter first name: ";
cin >> name;
cout<<endl;

}


There's a start .
Topic archived. No new replies allowed.