Odpowiedź:
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout << "Podaj a: " << endl;
cin >> a;
cout << "Podaj b: " << endl;
cin >> b;
cout << "Podaj c: " << endl;
cin >> c;
cout << "a-b-c = " << a - b - c << endl;
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout << "Podaj a: " << endl;
cin >> a;
cout << "Podaj b: " << endl;
cin >> b;
cout << "Podaj c: " << endl;
cin >> c;
cout << "a-b-c = " << a - b - c << endl;
}