fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. // zdefiniuj funkcję
  5. int trzy(int kwota) {
  6. }
  7.  
  8. int main() {
  9. // sprawdź działanie funkcji
  10. cout << trzy(11) << " " << trzy(99) << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty