potrzebuje program który pierw pokazuje moje imię i nazwisko a następnie trzeba podać 3 liczby na które program poda sumę iloraz i iloczyn tych liczb ​



Odpowiedź :

REGNAD

#include <iostream>

using namespace std;

int main(){

cout << "imie i nazwisko" << endl;

int a;

cout << "Podaj pierwsza liczbe" << endl;

cin >> a;

int b;

cout << "Podaj druga liczbe" << endl;

cin >> b;

int c;

cout << "Podaj trzecia liczbe" << endl;

cin >> c;

cout <<"Suma: ” << endl;

cout << a + b + c << endl;

cout <<"Iloczyn: ” << endl;

cout << a * b * c << endl;

cout <<"Iloraz: ” << endl;

if (b !=0 && c !=0{

cout << a / b / c << endl;

}

else cout <<"Nie dziel przez zero";

return 0;

}

Inne Pytanie