Informatică, întrebare adresată de Ovidium3991, 9 ani în urmă

Se dau trei numere x, y, z. Să se descrie un algoritm pentru a scădea z din cel mai mare dintre x şi y. C++

Răspunsuri la întrebare

Răspuns de 568
0
int main()
{
int x,y,z;
cin>>x>>y>>z;

if(x>y){x=x-z;cout<<x;}
else if(y>x){y=y-z;cout<<y;}

}
Răspuns de express
1
Pseudocod :
citeste x, y, z
daca (x >= y)
   atunci nr = x - z
   altfel nr = y - z
sfarsit daca
scrie nr

Sursa in C++ :
#include <iostream>
using namespace std;
int x, y, z, nr;
int main()
{
    cin >> x >> y >> z;
    if(x >= y) nr = x - z;
          else nr = y - z;
    cout << nr;
    return 0;
}


Ovidium3991: multumesc
Alte întrebări interesante