こんにちは私はプログラムを持つためにこのコードを書きました、100未満のランダムな整数を使用している間=>関数を分割し、qoutientと剰余を返し、それらを出力に出力しますが、私は動作しないようですどの部分が間違っているか助けてください。
#include <cstdlib>
#include <iostream>
#include <ctime>
using namespace std;
using namespace std;
int division(int& remainder,int qoutient)
{
int dividant;
int divisor;
int quotient=dividant/divisor;
int remainder=dividant%divisor;
}
int main()
{
int dividant =(rand()%99);
int divisor =(rand()%99);
int qoutient;
int remainder_result;
srand(time(NULL));
do{qoutient=division(dividant,divisor);
cout<<"this is q:"<<qoutient<<endl;
cout<<"remainder"<<remainder_result<<endl;}
while(dividant>divisor);
}