跪求一个c语言程序 题目:班级成绩管理系统 各位好心的朋友帮帮忙 不胜感激

2024-12-15 12:06:00
推荐回答(2个)
回答1:

#define N 10
typedef int T;

struct stack
{
T item[N];
int top;
public:
stack() //生成栈
void Cls() //清空栈
bool IsEmpty() //判空栈
bool push(T itm) //入栈
{
if(top == N - 1)
return false;
else
{
item[++top] = itm;
return true;
}
}
bool pop(T& itm) //出栈
{
if(top != -1)
{
itm = item[top--]; return true;
}
else
return false;
}
}

回答2:

晕,这哪是问题啊,你直接说要一个c语言结课设计好了。
劝你还是自己写一个吧。这东西不自己重头写一个,永远也学不会编程。
即便是想用作参考的,也得等你吧自己的程序写出来后再参考。