Auto commit

This commit is contained in:
smallkun 2025-02-20 19:43:38 +08:00
parent 9110054b2c
commit d099950411
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include <stdio.h>
int main(){
float a, b, result;
int flag;
printf("请输入两个数字:");
scanf("%f %f", &a, &b);
printf("请输入您要进行的操作(1.做加法 2.做乘法 3.做除法):");
scanf("%d", &flag);
switch(flag){
case 1:result = a+b;break;
case 2:result = a*b;break;
case 3:result = a/b;break;
}
printf("结果为%f\n", result);
return 0;
}

Binary file not shown.