我对所有这些都进行了编码,但它不会输出我的任何百分比错误我不太确定将百分比放在哪里?假设输出 3 个不同的数字,但由于此错误,我什至无法输出,我不知道我尝试将所有内容更改为浮点数和整数,但 % 的错误消息正在重载函数?
double dRandom()
{
return double(rand()/RAND_MAX);
}
int main()
{
int loop_count=100, count=0;
int result=0;
float x=dRandom();
double y=dRandom();
float arccos (float x);
float function=0;
srand(time(NULL));
for(int i=1; i<4;++i)
{
for (int k=1; k<= loop_count; ++k)
{
function= (x* arccos(x)-sqrt(1- pow(x,2)))%RAND_MAX;//this line is where i'm not sure how to add the percent sign in correctly
}
}
if(x<y)
cout<<result;
return 0;
}