显示一个数的所有因数的 C 程序

使用 switch…case 制作简单计算器的 C 程序

在本例中,您将学习使用 switch 语句在 C 语言编程中创建一个简单的计算器。

要理解此示例,您应该具备以下 C 语言编程主题的知识:

该程序从用户处获取一个算术运算符 +, -, *, / 和两个操作数。然后,它根据用户输入的运算符对两个操作数执行计算。

使用 switch 语句的简单计算器

#include <stdio.h>
int main() {
  char op;
  double first, second;
  printf("Enter an operator (+, -, *, /): ");
  scanf("%c", &op);
  printf("Enter two operands: ");
  scanf("%lf %lf", &first, &second);

  switch (op) {
    case '+':
      printf("%.1lf + %.1lf = %.1lf", first, second, first + second);
      break;
    case '-':
      printf("%.1lf - %.1lf = %.1lf", first, second, first - second);
      break;
    case '*':
      printf("%.1lf * %.1lf = %.1lf", first, second, first * second);
      break;
    case '/':
      printf("%.1lf / %.1lf = %.1lf", first, second, first / second);
      break;
    // operator doesn't match any case constant
    default:
      printf("Error! operator is not correct");
  }

  return 0;
}

输出

Enter operator: +, -, *, /: -
Enter two operands: 3.4 8.4
3.4 - 8.4 = -5

用户输入的运算符存储在 op 变量中,用户输入的两个操作数 1.54.5 分别存储在 firstsecond

由于运算符 * 匹配 case '*': ,程序的控制跳转到

printf("%.1lf * %.1lf = %.1lf", first, second, first * second);

此语句计算乘积并将其显示在屏幕上。

为了使我们的输出看起来更清晰,我们只是使用代码 %.1lf 将输出限制在小数点后一位。

最后, break; 语句将程序控制权跳出 switch 语句。