Ik heb een vraag hoe kan al mijn tekst laten centeren want ik heb al veel geprobeert maar tot nu toe mislukt alles!
dit zijn mijn codes tot nu toe:
dit zijn mijn codes tot nu toe:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string strusername;
string strpassword1;
string strpassword2;
cout << "Enter your username";
cin >> strusername;
cout << "Enter your password";
cin >> strpassword1;
cout << "Enter your password again";
cin >> strpassword2;
if (strpassword1 == strpassword2)
{
cout << "Succesfully registered";
}
else
{
cout << "Registration failed, please try again";
}
system("pause");
}