#include "main.h"
int main(void)
{
int chose;
chose = true;
while (chose) {
chose = menu(4, 0); // 一共有四个模块
switch (chose) {
case 1: stock_main(); break;//库存
case 2: yean_main(); break;//生产
case 3: pay_main(); break;//支出
case 4: income_main(); break;//收入
default: break;
}
}
return EXIT_SUCCESS;
}
阅读(516) | 评论(0) | 转发(0) |