科目名稱:資訊系統 與網路導論 | 開課系所:資訊工程 學系 | 任課教師 |
吳坤熹 |
||
系所別: |
年級: |
學號: |
姓名: |
考試日期 |
2009.4.8 |
(考試時間: 15:10-15:30)
#include <iostream>
using std::cout;
class CStack
{
public:
CStack() // Default Constructor
{
index = 0;
}
void push(int i)
{
a[index++] = i;
}
int pop()
{
return a[--index];
}
private:
#define StackSize 10
int a[StackSize];
int index;
};
int main() {
CStack stack1;
stack1.push(3); stack1.push(8);
CStack stack2 = stack1;
stack2.pop();
cout << stack2.pop() << "\n";
}