“Akceptowanie wielu wartości z funkcji w CPP” Kod odpowiedzi

Akceptowanie wielu wartości z funkcji w CPP

#include<iostream>
using namespace std;
void div(int a, int b, int &quotient, int &remainder) {
   quotient = a / b;
   remainder = a % b;
}
main() {
   int a = 76, b = 10;
   int q, r;
   div(a, b, q, r);
   cout << "Quotient is: "<< q <<"\nRemainder is: "<< r <<"\n";
}
Upset Unicorn

Akceptowanie wielu wartości z funkcji w CPP

#include<iostream>
using namespace std;
void div(int a, int b, int "ient, int &remainder) {
   quotient = a / b;
   remainder = a % b;
}
main() {
   int a = 76, b = 10;
   int q, r;
   div(a, b, q, r);
   cout << "Quotient is: "<< q <<"\nRemainder is: "<< r <<"\n";
}
Upset Unicorn

Odpowiedzi podobne do “Akceptowanie wielu wartości z funkcji w CPP”

Pytania podobne do “Akceptowanie wielu wartości z funkcji w CPP”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu