You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
364 B

  1. // programmingMode
  2. #include <stdio.h>
  3. #include <math.h>
  4. #include "taschenrechner.h"
  5. void programmingMode() {
  6. int num1, num2, result;
  7. char operator;
  8. printf("Enter first integer: ");
  9. scanf("%d", &num1);
  10. printf("Enter operator (+, -, *, /): ");
  11. scanf(" %c", &operator);
  12. printf("Enter second integer: ");
  13. scanf("%d", &num2);
  14. }