加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3-9.c 660 Bytes
一键复制 编辑 原始数据 按行查看 历史
王振宇 提交于 2022-03-09 18:42 . 牛客
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
//int main()
//{
// int n = 0xABCDEF;
// printf("%15d", n);
// return 0;
//}
//int main()
//{
// int n = 1234;
// printf("%#o %#X", n, n);
// return 0;
//}
//
//int main()
//{
// char c;
// int n;
// float m;
// scanf("%c %d %f", &c, &n, &m);
// printf("%c %d %f", c, n, m);
// return 0;
//}
//#include <stdio.h>
//int main()
//{
// int a, b, c;
// scanf("%d %d %d", &a, &b, &c);
// printf("%d %d %d", a, b, c);
// return 0;
//}
//
//#include <stdio.h>
//int main()
//{
// int a, b;
// scanf("%x %o", &a, &b);
// printf("%d", a + b);
// return 0;
//}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化