#include stdio.h
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名與空間、虛擬主機(jī)、營(yíng)銷軟件、網(wǎng)站建設(shè)、通州網(wǎng)站維護(hù)、網(wǎng)站推廣。
struct s_node
{
int data;
struct s_node *next;
};
typedef struct s_node s_list;
typedef s_list *link;
link operator=NULL;
link operand=NULL;
link push(link stack,int value)
{
link newnode;
newnode=(link) malloc(sizeof(s_list));
if(!newnode)
{
printf("\nMemory allocation failure!!!");
return NULL;
}
newnode-data=value;
newnode-next=stack;
stack=newnode;
return stack;
}
link pop(link stack,int *value)
{
link top;
if(stack !=NULL)
{
top=stack;
stack=stack-next;
*value=top-data;
free(top);
return stack;
}
else
*value=-1;
}
int empty(link stack)
{
if(stack==NULL)
return 1;
else
return 0;
}
int is_operator(char operator)
{
switch (operator)
{
case '+': case '-': case '*': case '/': return 1;
default:return 0;
}
}
int priority(char operator)
{
switch(operator)
{
case '+': case '-' : return 1;
case '*': case '/' : return 2;
default: return 0;
}
}
int two_result(int operator,int operand1,int operand2)
{
switch(operator)
{
case '+':return(operand2+operand1);
case '-':return(operand2-operand1);
case '*':return(operand2*operand1);
case '/':return(operand2/operand1);
}
}
void main()
{
char expression[50];
int position=0;
int op=0;
int operand1=0;
int operand2=0;
int evaluate=0;
printf("\nPlease input the inorder expression:");
gets(expression);
while(expression[position]!='\0'expression[position]!='\n')
{
if(is_operator(expression[position]))
{
if(!empty(operator))
while(priority(expression[position])= priority(operator-data)
!empty(operator))
{
operand=pop(operand,operand1);
operand=pop(operand,operand2);
operator=pop(operator,op);
operand=push(operand,two_result(op,operand1,operand2));
}
operator=push(operator,expression[position]);
}
else
operand=push(operand,expression[position]-48);
position++;
}
while(!empty(operator))
{
operator=pop(operator,op);
operand=pop(operand,operand1);
operand=pop(operand,operand2);
operand=push(operand,two_result(op,operand1,operand2));
}
operand=pop(operand,evaluate);
printf("The expression [%s] result is '%d' ",expression,evaluate);
getch();
}
#include
void
main()
{
float
a,b;
char
d;
do
{
printf("Please
enter
the
two
Numbers,
separated
by
Spaces:\n");
scanf("%f
%f",a,b);
printf("Please
select
operation
way:
(-,*,/,^,s,!)\n");
scanf("%s",d);
switch(d)
{
case'+':
printf("a+b=%f\n",a+b);
break;
case'-':
printf("a-b=%f\n",a-b);
break;
case'*':
printf("a*b=%f\n",a*b);
break;
case'/':
printf("a/b=%f\n",a/b);
break;
default:
printf("input
error\n");
}
printf("Do
you
want
to
continue(Y/N
or
y/n)");
fflush(stdin);
}
while(toupper(getchar())=='Y');
}
可以運(yùn)行,不知道滿不滿足你的要求,你自己可以試試
額,搞定了。
你交給老師的時(shí)候,你要告訴他for循環(huán)的功能,for()循環(huán)體里也就是for下方{}大括號(hào)里的代碼要被循環(huán)執(zhí)行。然后你就一行一行的解釋 switch()里的語(yǔ)句就行了。
break表示跳出switch()。
至于int a,b,i; 這些你肯定懂了的吧。
最后那里表示在主函數(shù) main()里調(diào)用自定義的函數(shù)
#include stdio.h
int calculator() ?//定義一個(gè)函數(shù)。完成計(jì)算功能
{
int a,b, i;
char c;
for(i=0;;i++)
{
printf("請(qǐng)輸入所要計(jì)算的兩個(gè)數(shù),以及所要執(zhí)行的計(jì)算符號(hào)\n");
scanf("%d %d %c", a,b,c);
switch (c)
{
case '+':
printf("所要計(jì)算的式子:%d+%d\n",a,b);
a = a + b;printf("計(jì)算結(jié)果為:%d\n\n",a);
break;
case '-':
?printf("所要計(jì)算的式子:%d-%d\n",a,b);
a = a - b;printf("計(jì)算結(jié)果為:%d\n\n",a);
break;
case '*':
?printf("所要計(jì)算的式子:%d*%d\n",a,b);
a = a * b;printf("所要計(jì)算的式子:%d*%d\n",a,b);printf("計(jì)算結(jié)果為:%d\n\n",a);
break;
case '/':
?printf("所要計(jì)算的式子:%d/%d\n",a,b);
a = a / b;printf("所要計(jì)算的式子:%d/%d\n",a,b);printf("計(jì)算結(jié)果為:%d\n\n",a);
break;
}
}
}
int main()
{
calculator();//在main()函數(shù)里調(diào)用自定義的函數(shù)?calculator
}
C語(yǔ)言編寫計(jì)算器
我們可以用printf和scanf函數(shù)輸出結(jié)果和獲取用戶的輸入。需要stdio.h頭文件。scanf函數(shù)在讀取數(shù)據(jù)的時(shí)候不需要再一行上輸入每個(gè)數(shù)據(jù),只要數(shù)據(jù)和數(shù)據(jù)之間留出空白就可以了。先聲明兩個(gè)變量number1和number2,operation變量用來(lái)存儲(chǔ)運(yùn)算符。用scanf函數(shù)獲取這兩個(gè)數(shù)字和運(yùn)算符。分別用%lf %c %lf
請(qǐng)點(diǎn)擊輸入圖片描述
然后需要檢測(cè)輸入是否是正確的,檢查是不是+ - * / %,在這里要用到switch函數(shù),用來(lái)看operation變量是否別傳入了正確的值。
switch(operation)
{
case '+':
printf........
}
具體的運(yùn)算我們只需要再case之后的printf語(yǔ)句中設(shè)定和輸出就可以了。
請(qǐng)點(diǎn)擊輸入圖片描述
由于除法和取余運(yùn)算比較特殊,我們單獨(dú)說(shuō)明。除法的除數(shù)不能為零,所以除法需要檢測(cè)除數(shù)是否為零,只需要用if else語(yǔ)句就可以,if(number2 == ),取余運(yùn)算符對(duì)于浮點(diǎn)數(shù)沒(méi)有意義,所以將浮點(diǎn)數(shù)轉(zhuǎn)換為long類型,強(qiáng)制類型轉(zhuǎn)換,if((long)number2 == 0) ? else ,這樣整個(gè)代碼就完成了。
請(qǐng)點(diǎn)擊輸入圖片描述
簡(jiǎn)單計(jì)算器的編輯并不難,但是要注意一些細(xì)節(jié),除法的處理要注意除數(shù)不能為零的情況,而且取模運(yùn)算要將兩個(gè)操作數(shù)轉(zhuǎn)化為整型,當(dāng)然,作為真正的計(jì)算器,只實(shí)現(xiàn)這些功能是不夠的,還需要更多的功能,不過(guò)有一個(gè)好的開始也不錯(cuò)。
下面我們就運(yùn)行一下這個(gè)程序吧。25*13的值和8%5的值。可以看到是我們期望的值。
請(qǐng)點(diǎn)擊輸入圖片描述
請(qǐng)點(diǎn)擊輸入圖片描述
1、打開visual C++ 6.0-文件-新建-文件-C++ Source File。
2、輸入預(yù)處理命令和主函數(shù):#include /*函數(shù)頭:輸入輸出頭文件*/,void main()/*空類型:主函數(shù)*/。
3、定義變量:int a,b,d; /*定義變量的數(shù)據(jù)類型為整型*/,char c;/*定義變量的數(shù)據(jù)類型為字符型*/。
4、輸入四則運(yùn)算式:printf(輸入如“3*4”或“5+2”的四則運(yùn)算式:);/*輸出文字提示*/scanf(%d%c%d,a,c,b);/*輸入四則運(yùn)算式*/。
5、判斷運(yùn)算符號(hào):switch(c) /*判斷運(yùn)算符號(hào)*/{case'+':d=a+b;break;/*進(jìn)行加法6、運(yùn)算*/case'-':d=a-b;break;/*進(jìn)行減法運(yùn)算*/case'*':d=a*b;break;/*進(jìn)行乘法運(yùn)算*/case'/':d=a/b;break; /*進(jìn)行除法運(yùn)算*/}。
7、輸出結(jié)果:printf(%d%c%d=%d\n,a,c,b,d);/*輸出結(jié)果*/。