2018華東師範大學上機(三) 表示式的值

2021-10-04 19:18:16 字數 629 閱讀 5601

題目描述:

給乙個小學生都會算的 1 位數與 1 位數運算的代數式,請你求出這個表示式的值。表示式僅含+-*/四種運算,題目保證 0 不為除數,除法保留一位小數。

輸入格式:

輸入乙個合法表示式,由數字和+、-、*、/組成。

輸出格式:

輸出表示式運算後的值。

輸入樣例:

1+13*4輸出樣例:2

12解決方法:

(1)**實現:

#include #include #include #include #include using namespace std;

int main(){

int num1,num2;

char ch;

while (scanf("%d%c%d", &num1, &ch, &num2) != eof)

{switch (ch)

{case '+':

cout <

華東師範大學2020 加密2

加密2 time limit 1000ms memory limit 30000kb total submit 179 accepted 103 description 對乙個整數 32位無符號整數 進行規則如下的加密 1.低16位和高16位互換 2.此時的低16位按位取反 3.此時的高16位與低1...

華東師範大學2020機試題解

1.統計卡牌的值 2.求30的倍數 include include include include include using namespace std const int maxn 1000 10 int arr maxn bool compare char x,char y intmain i...

華東師範大學 E 黑心啤酒廠

time limit per test 1.0 seconds time limit all tests 1.0 seconds memory limit 256 megabytes accept submit 849 2604 黑心啤酒廠為了讓大家買啤酒,會把一瓶酒設計成恰好能倒七杯。由於聚會時經...