using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
CStack s = new CStack(10);
string tmp,str = "23-53+*";
int a, b,c=0;
char op;
for (int i = 0; i < str.Length;i++ ) // Length是判斷 字串長度
{
tmp = str.Substring(i,1); // 是 字串 由 第 i 個字 取 1個
if (char.IsNumber(str,i)) // IsNumber 是判斷 取得的字串是否為數字
{
s.push(tmp);
}
else {
a = int.Parse(s.pop()); // int.Parse 是將字串解析為整 ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容