Generation

generate functionWed, 31 May 2023

en pantalla se muestra con do while * ** *** **** ***** ****** ******* ******** ********* **********

#include <iostream> int main() { int i = 0; do { int j = 0; do { std::cout << "*"; j++; } while (j <= i); std::cout << std::endl; i++; } while (i < 10); return 0; }

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