題目連接:http://noi.openjudge.cn/ch0202/1696/函數
* + 11.0 12.0 + 24.0 35.0
1357.000000
這個題目裏面關於逆波蘭表達式的描述是錯誤的。逆波蘭表達式實際上是後綴表達式,詳見百度百科。波蘭表達式是前綴表達式。spa
本題目的AC代碼:code
1 #include<stdio.h> 2 #include<stdlib.h> 3 double exp() 4 { 5 char a[10]; 6 scanf("%s", a); 7 switch(a[0]) 8 { 9 case'+': return exp( ) + exp( ); 10 case'-': return exp( ) - exp( ); 11 case'*': return exp( ) * exp( ); 12 case'/': return exp( ) / exp( ); 13 default: return atof(a); 14 } 15 } 16 int main() 17 { 18 double ans; 19 ans = exp(); 20 printf("%f\n", ans); 21 return 0; 22 }
代碼簡單,不解釋,自行跟蹤推演一下便可理解。本代碼來自某本書,具體不記得出處了……blog