#include
void add(int a,int c)
printf("和為
%d",a+c);
void dec(int a,int c)
printf("減為
%d",a-c);
void rid(int a,int c)
printf("乘為
%d",a*c);
void div(int a,int c)
printf("除為
%d",a/c);
int main()
int n,m;
char x;
printf("請分別輸入你要進行計算的第乙個數字:
\n");
scanf("%d",&n);
printf("請分別輸入你要進行計算的功能(
+-*/
):\n");
scanf(" %c",&x);
printf("請分別輸入你要進行計算的第二個數字:
\n");
scanf("%d",&m);
switch(x){
case '+':
add(n,m);break;
case '-':
dec(n,m);break;
case '*':
rid(n,m);break;
case '/':
div(n,m);break;
default:printf("你輸入的功能不對
");
簡易計算器
include include include char xpr expression int level char ch double calc int lim return ret int main cal的遞迴使用,利用了當 運算子運算完畢以後,仍然會留在這個位置 比如式子 3 5 2 的分析...
簡易計算器
cpp copyright c 2012,煙台大學計算機學院 all rights reserved.檔名稱 text.cpp 作 者 胡穎 完成日期 2013 年 6 月 28 日 版 本 號 v1.0 輸入描述 輸入操作指令及計算的數字 符號 問題描述 製作簡易計算器 程式輸出 輸出操作頁面及計...
簡易計算器
該程式實現了乙個簡易的四則運算計算器,功能強大之處在於輸入格式不受限制。你輸入的字串可以包含空格,也可以用括號包含優先順序。include include include include includeusing namespace std struct node string str stacks...