上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 53 下一页
摘要: #include<stdio.h>int main(){ int a; int b; int c; int count=0; for(a=1;a<=5;a++) { for(b=1;b<=5;b++) { for(c=1;c<=5;&&a!=b;c++) { if(c!=a&&c!=b) { cou 阅读全文
posted @ 2023-05-20 20:09 不会JAVA的小袁 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int a,b,c; for(a=0;a<=20;a++) for(b=0;b<=33;b++) for(c=3;c<=99;c++) if(a*5+b*3+c/3==100) if(a+b+c==100) if(c%3==0) printf 阅读全文
posted @ 2023-05-20 19:41 不会JAVA的小袁 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cmath>#include<stdexcept>using namespace std;double area(double a,double b,double c) throw (invalid_argument){ if(a<=0||b<= 阅读全文
posted @ 2023-05-19 21:15 不会JAVA的小袁 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<string>using namespace std;class MyException{ public: MyException(const string &message):message(message){} ~MyException(){ 阅读全文
posted @ 2023-05-19 21:04 不会JAVA的小袁 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<algorithm>#include<functional>#include<vector>using namespace std;int main(){ int iarray[]={26,17,15,22,23,33,32,40}; vecto 阅读全文
posted @ 2023-05-19 20:52 不会JAVA的小袁 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<algorithm>#include<functional>#include<iterator>#include<vector>using namespace std;class evenByTwo{ private: int x; public 阅读全文
posted @ 2023-05-18 13:53 不会JAVA的小袁 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<algorithm>#include<functional>#include<vector>using namespace std;int main(){ int iarray[]={0,1,2,3,4,5,6,6,6,7,8}; vector< 阅读全文
posted @ 2023-05-18 13:12 不会JAVA的小袁 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<fstream>#include<iostream>using namespace std;int main(int){ ifstream inf; inf.open("abc.txt"); ofstream outf; outf.open("abc_back.txt"); cha 阅读全文
posted @ 2023-05-17 20:19 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int n; cout<<"Input n: "; cin>>n; cout<<"Dec: "<<dec<<n; cout<<" "<<"Oct: "<<oct<<n; cout<<" "<<"Hex 阅读全文
posted @ 2023-05-17 20:08 不会JAVA的小袁 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<fstream>using namespace std;class Dog{ public: int gdoga() { return a; } int gdogw() { return w; } void setdog(int x,int y) 阅读全文
posted @ 2023-05-17 19:59 不会JAVA的小袁 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 53 下一页