generate functionMon, 01 May 2023

juego de piedra papel y tijeras con 110 líneas de código usando switch, printf y scanf

#include <iostream> using namespace std; int main() { int a, b; cout << "Enter a value for a: "; cin >> a; cout << "Enter a value for b: "; cin >> b; cout << "The sum is: " << a + b << endl; return 0; }

Want to kickstart your project?Use the new AI Studio to create your code