數據結構007

算術表達式求值 1.將用戶輸入的任何一個合法的算術表達式轉換爲後綴表達式 2.輸出後綴表達式; 3.計算並輸出後綴表達式的值 如下爲相關代碼:git #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 100 #define ERROR -1 char SY[MAX],CH[MAX]; double DT
相關文章
相關標籤/搜索