1 Star 0 Fork 1

宋子桓/基于C的计算器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
exception.h 117 Bytes
一键复制 编辑 原始数据 按行查看 历史
宋子桓 提交于 2020-04-10 11:22 . 实现第一代
#include<setjmp.h>
#define try if(setjmp(env) == 0)
#define except else
#define raise longjmp(env,1)
jmp_buf env;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/songzh0630/Calculator.git
git@gitee.com:songzh0630/Calculator.git
songzh0630
Calculator
基于C的计算器
master

搜索帮助