摘要: 方案一:使用freopen进行输入输出 #include<iostream> #include<string> #include<cstdlib> #include<ctime> using namespace std; #define MIN 0 #define MAX 9 class Winni 阅读全文
posted @ 2022-11-24 14:12 一直在努力的小笨蛋 阅读(92) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { vector<int> number,even,odd; int a; while(cin>>a){ number.pu 阅读全文
posted @ 2022-06-11 20:49 一直在努力的小笨蛋 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 学C的时候最大的苦恼是编译不通过和运行不正确 学了C++之后就开始有编译过了但运行不出来的情况了TAT 阅读全文
posted @ 2022-05-17 16:03 一直在努力的小笨蛋 阅读(12) 评论(0) 推荐(0) 编辑
摘要: HugeInt HugeInt::operator/(const HugeInt& c)const { HugeInt temp(0); HugeInt temp2(*this); int flag=0; for (int j = 1;j <= 10;j++) { if(flag!=0){ j=1; 阅读全文
posted @ 2022-05-15 14:40 一直在努力的小笨蛋 阅读(32) 评论(0) 推荐(0) 编辑