摘要: 题目链接 (手动点击跳转) 题目分析:同样是高精度模拟的题 #include <iostream> #include <cstring> using namespace std; #define maxn 5020 int a[maxn],b[maxn],c[maxn]; int main() { 阅读全文
posted @ 2022-03-12 11:27 TCcjx 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 题目链接 (手动点击跳转) #下面是正文 题目背景:先总结一下常用的数据类型 1.char(一字节,八位) -128127 2.int(四字节,三十二位) -2^31-231-1,大约能够表示绝对值不超过2.1x109的整数 3.unsigned int(四字节,三十二位) 0232-1大约能够表示 阅读全文
posted @ 2022-03-12 10:30 TCcjx 阅读(30) 评论(0) 推荐(0) 编辑