Generation

generate functionThu, 18 May 2023

Programa q saque 3 promedio de 3 materias español matemáticas y ciencias, Programa del área del triángulo y Programa de descuento todo junto

++ #include <iostream> using namespace std; int main() { int num, i, j, space; cout << "Enter number of rows: "; cin >> num; space = num - 1; for (j = 1; j <= num; j++) { for (i = 1; i <= space; i++) { cout << " "; } space--; for (i = 1; i <= 2 * j - 1; i++) { cout << "*"; } cout << "\n"; } space = 1; for (j = 1; j <= num - 1; j++) { for (i = 1; i <= space; i++) { cout << " "; } space++; for (i = 1; i <= 2 * (num - j) - 1; i++) { cout << "*"; } cout << "\n";

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