Краткий обзор программы (проблема с 3 телами):
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
double ax, ay, t;
double dt;
/* other declarations including file output, N and 6 command line arguments */
...
int main(int argc, char *argv[])
{
int validinput;
...
/* input validation */
output = fopen("..", "w");
...
/* output validation */
for(i=0; i<=N; i++)
{
t = t + dt;
vx = ...
x = ...
vy = ...
y = ...
fprintf(output, "%lf %lf %lf\n", t, x, y);
}
fclose (output);
}
/* ext function to find ax, ay at different ranges of x and y */
{
declarations
if(x < 1)
{
ax = ...
}
else if(x==1)
{
ax = ...
}
...
else
{
...
}
if(y<0)
{
...
}
...
}
Я получаю сообщение об ошибке в строке '{/ * ext, чтобы найти ax, ay в различных диапазонах x и y * /', говоря"error: expected identifier or '(' before '{' token"
Я думаю, это может быть связано с тем, что вы не вызываете или не создаете внешнюю функцию правильным образом