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 可以看到全部内容