我正在尝试在 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);
}