Log in and out and register.

If I where to make a log in and out and register c++ program would it be like this?


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
int main()

{

cout << "Login in";

cout << " Username: ";
cout << " Password: ";
cout << " Register put in your username and password: ";

system ("pause");
return 0;

}



Is that kinda like what you would do?
Topic archived. No new replies allowed.