-1
#include <stdio.h>

int main()
{
  printf("choose number");
  c();
}

c()
{
  printf("1. ax+b=0\n\n");
  printf("2. ax+by+c=0\n   dx+ey+f=0\n\n");
  int n;

  scanf("%d", &n);

  if (n > 3)
    wrong();
  if (n == 1)
    formula1();
  if (n == 2)
    formula2();
  if (n == 3)
    ;
  formula3();
}

wrong()
{
  printf("Please choose a number between 1 and 3.\n\n");
  c();
}

formula1()
{
  printf("ax+b=0\n");
  printf("Enter your values for a and b respectively, seperated by commas\n");
  float a, b, x;
  scanf("%f,%f,%f", &a, &b);
  x = -b / a;
  printf("x=-b/a\n");
  printf("=>x=%f", x);
  question();
}

formula2()
{
  printf("ax+by+c=0\n\ndx+ey+f=0\n");
  printf(
      "Enter your values for a, b, c, d ,e and f respectively, seperated by commas\n");
  float a, b, c, d, e, f, x, y;
  scanf("%f,%f,%f,%f,%f,%f", &a, &b, &c, &d, &e, &f);
  x = ((f * b) - (c * e)) / ((a * e) - (d * b));
  y = ((c * d) - (f * a)) / ((e * a) - (d * b));
  printf("=>x=%f", x);
  printf("\n\n");
  printf("=>y=%f", y);
  question();
}

question()
{
  char t;
  printf("\n\nanother equation?\ny/n?\n");
  if (t == 'y')
  {
    printf("\n\n\n\n\n");
    c();
  }
  else if (t != 'n')
    question();
}

我有这段代码,简而言之,它解决了 3 个方程。当您选择任何选项时,它似乎多次运行问题方法,然后由于segmentation fault: 11

有人可以指出我哪里出错了。对我的代码的任何其他帮助将不胜感激

4

2 回答 2

4

这是一个问题:

scanf("%f,%f,%f",&a, &b);

只为这三个值提供了两个参数。

于 2013-06-27T14:50:45.740 回答
4

没有像scanf()in这样的输入函数question(),所以如果t不是 'y' 或 'n' 偶然,你会得到无限递归,直到超过堆栈大小......

于 2013-06-27T14:55:02.803 回答