Ra

mail@pastecode.io avatar
unknown
plain_text
2 years ago
847 B
5
Indexable
Never
#include <iostream>
#include <stdlib.h>
#include <conio.h>

using namespace std;
void linea() {
	cout << "-----------------------------\n";
}
void RegistroDatos () {
	string Nombre1, Nombre2;
	char ColorFicha1, ColorFicha2;
	cout << "\tJugador 1\n";
	linea();
	cout << "Ingrese su nombre: "; cin >> Nombre1;
	linea();
	cout << "Elige el color de tu ficha(N: Negro, B: Blanco): "; cin >> ColorFicha1;
	ColorFicha1 = toupper(ColorFicha1);
	linea();
	cout << "\n";
	cout << "\tJugador 2\n";
	linea();
	cout << "Ingrese su nombre: "; cin >> Nombre2;
	linea();
	if (ColorFicha1 == 'N') {
		ColorFicha2 = 'B';
		cout << "El color de tu ficha es blanco!";
	}
	else {
		ColorFicha2 = 'N';
		cout << "El color de tu ficha es negro!";
	}
	
}


int main() {
	
	RegistroDatos();





	return 0;
	system("pause");
}