Anderson Pozo

Generation

generate functionSat, 01 Jul 2023

Abelbus Faurendore es el director de una prestigiosa escuela, conocida por la enseñanza de habilidades mágicas, requiere un programa para registrar la cantidad de alumnos que se inscriben durante los 31 días del misterioso mes de mayo. Se deberá ingresar el día y la cantidad de alumnos inscriptos en ese día. Ten en cuenta que los días en los que la escuela no está abierta no se registrarán en el sistema. Además, el registro de alumnos se detendrá mágicamente cuando ingreses el día en 0.

#include <iostream> using namespace std; /* Function: register students Params: int students: the amount of students to register */ void registerStudents(int students) { cout << "Day " << students << ": " << students << " registered." << endl; } /* Function: register students Params: int students: the amount of students to register int day: the day of the month the students were registered in */ void registerStudents(int students, int day) { cout << "Day " << day << ": " << students << " registered." << endl; } int main() { int students, day = 1; while (day > 0) { cin >> students; registerStudents(students, day); day++; } return 0; }

Questions about programming?Chat with your personal AI assistant