我有一个返回流程的语句,说明 没有执行操作的实际结果,“过程返回了-1073741676(0xC0000094)”。我想进行以下操作 root(n-1,a / b)
使用定义的变量替换pow操作中的操作。 编译器是GNU CC。我正在使用Code :: Blocks。
#include <iostream>
#include <cmath>
#include <math.h>
using namespace std;
float r;
int a;
int an;
float n;
int c;
int choice;
int findve;
int rmdr;
int k = pow(r,(n-1));
int b;
int j;
int main (){
//***In case the element missing is r***
if (findve == 2){
cout << "intput an \n";
cin >> an;
cout << "Input a \n";
cin >> a;
cout << "Input n \n";
cin >> c;
j = (pow((a/b),(1/(c-1))));
cout << "The ratio is " << j;
return 0; }
}
我希望j出现在控制台中,但是未显示任何结果,并且控制台中显示的以下消息是“ Process return -1073741676(0xC0000094)”。 生成日志状态中的消息 “进程终止,状态为-1073741676” 我正在尝试执行以下操作root(n-1,a / b)