Generation

generate functionWed, 28 Jun 2023

Dame un codigo completo con el ciclo while donde muestre 4 opciones funcionales, suma, resta, multiplicaion y division, y al final, una opcion de salir presionando la letra 5

#include <iostream> using namespace std; int main() { int a = 5; int b = 3; int c = 2; int d = 6; cout << "The sum of a, b, c, and d is " << (a + b + c + d) << endl; cout << "Hello, World!"; return 0; }

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