Generation

generate functionSat, 29 Apr 2023

realizar un programa que imprima 30 veces tu nombre completo con whille

int main() { int i = 0; while (i < 30) { cout << "Rodolfo Mantilla" << endl; i += 1; } }

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