Informatică, întrebare adresată de Utilizator anonim, 8 ani în urmă

Corectați greșelile din program:
// Program Gresit

#include

using namespace std;

int main

{

int x, y, z, s, r;

cout>> Introduceti numerele intregi x, y, z:”< >x>>y z;

s=x+y+z

r=sqrt(x+y+z);

cout<<“Suma numerelor introduse: ”;

cout<
return 1;

}

Răspunsuri la întrebare

Răspuns de SMihai
1

#include <iostream>

#include <Math.h>

using namespace std;

int main()

{

   int x, y, z, s, r;

   cout << "Introduceti numerele intregi x, y, z: ";

   cin >> x;

   cin >> y;

   cin >> z;

   s = x + y + z;

   r = sqrt(x + y + z);

   cout << "Suma numerelor introduse : ";

   cout << s;

   return 0;

}

Alte întrebări interesante