问题描述
- 三个数的四则运算用c语言怎么写。只要思路
-
如何判断优先级来进行三个数的四则运算。。只用printf
scanf switch 和if语句。想了好久了计算器">
解决方案
lz你读入运算的方式是什么啊,可以在这上面做一些判断
解决方案二:
四则运算(C语言)
大数四则运算(C语言)
解决方案三:
根据题主要求,需要如下限制:
1.三个数以内的运算,需要进行输入数判断(即三个数以上的情况时要么直接截断不允许输入,要么输入无效化);
2.四则运算,需要对符号做判别,可用if或者switch(还需错误情况判别);
3.异常抛出(比如0除)。
设计思想:
printf...//input limitation
while...//condition for loop
scanf or getchar...//input data or char(must be data the first time)
printf...
end while//compute the result
compute()//function construction
for elements input :
switch(char):
....
break...
end function.
时间: 2024-10-31 15:33:05