ray_MAN
Tank
- Joined
- Aug 14, 2003
- Messages
- 4,655
- Reaction score
- 2
This is my first C++ program I have ever made without a tutorial!
Tell me what you think:
Also can someone tell me how to make the password and username a word? I have tried many things.
Tell me what you think:
PHP:
#include <iostream.h>
int main()
{
int a,b;
cout <<"Username: ";
cin >> a;
if(a == 748230)
{
cout<<"Password: ";
}
else
{
cout<<"Password: ";
}
cin >> b;
if(b == 9999)
{
cout<<"Welcome 748230!";
}
else
{
cout<<"-=ERROR=-Incorrect username or password! Please hit F9 to try again.";
}
return 0;
}
Also can someone tell me how to make the password and username a word? I have tried many things.