计算器C:输入操作符号和整数来执行计算

时间:2015-04-04 08:47:37

标签: c calculator

所以我理解了制作一个简单计算器的基本概念,例如向用户询问两个int值a,b,然后询问他们想要使用哪个操作符号。但我想创造一些更复杂和可用的东西。

我的方法是分别扫描int值和操作符号,所以首先它会扫描到int,然后扫描到字符串???输入将是这样的: 1(输入) '/'(输入) 2(输入) '+'(输入) 4(输入)然后用户可以按x结束并计算。

 int main()
{
int array_int[30];
char array_operators[30];
int hold_value = 0;
int i = 0;
printf("Enter your calculations, press enter after each number and operator is entered \n");
while(1==1){
    scanf("%i",&hold_value); //Use this to decide which array to put it in.
    if(isdigit(hold_value)){
      array_int[i] = hold value // Check if input will be an int or char to decide which array to store it in??

}

我仍然需要一种方法来结束用户输入的循环,我知道我放入条件的逻辑没有意义,但我是C的新手,我不知道我的所有选择。希望我的目标足够明确,让你们帮助我。感谢

2 个答案:

答案 0 :(得分:0)

如果你想在没有任何东西可以返回时结束循环,只需使用return(0) 如果你想结束程序而不是退出(0) 另外,请检查以下内容:
http://forum.codecall.net/topic/50733-very-simple-c-calculator/

答案 1 :(得分:0)

更改您当前的代码,

int main()
{
  int array_int[30]={0};
  char array_operators[30]={0}; //Initialize variables. It is a good practice
  char hold_value; //hold value must be a char
  int i = 0, j = 0;
  printf("Enter your calculations, press enter after each number and operator is entered, press Q to quit \n");
  while(1){
      scanf(" %c",&hold_value); //Note the space before %c. It skips whitespace characters

      if(hold_value=='Q') //break the loop if character is Q
        break;
      if(isdigit(hold_value)){ // If input is a digit
        array_int[i++] = hold_value-'0'; //Store the integer in array_int
      }
      else{ //Input is a character
        array_operators[j++] = hold_value;
      }

  }

  //Calculate from here

  return 0;
}