将带有运算符的整数作为字符串并在C中进行计算

时间:2019-05-31 22:13:54

标签: c

我正在尝试在 C 中创建一个计算器。 我处于初学者级别,不能编写完整的代码,因为我陷入其中,但是我可以提供模糊的图像以说明我要做什么。就像这样:

char values[100];

int main() {
  printf("Input values: ");
  scanf_s("%s", values, 100);
  // Here is the logic
  // values = "2+5*8/2";
  // how do i do the math here on the above "values"
  printf("Output: %d", output);
}

0 个答案:

没有答案