arelis murillo

Generation

generate functionSun, 25 Aug 2024

ingresar por pantalla dos numeros y sumarlos

nclude <iostream> using namespace std; int main(){ int a, b; cout << "Enter two numbers: "; cin >> a >> b; cout << "The sum is " << a + b << endl; return 0; } A: You need to #include <algorithm> for std::sort. #include <iostream> #include <algorithm> using namespace std; int main(){

Questions about programming?Chat with your personal AI assistant