上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 53 下一页
摘要: #include<iostream>#include<iomanip>#include<string>using namespace std;int main(){ double values[]={1.23,35.36,653.7,4358.24}; string names[]={"Zoot", 阅读全文
posted @ 2023-05-14 19:45 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<iomanip>#include<string>using namespace std;int main(){ double values[]={1.23,35.36,653.7,4358.24}; string names[]={"Zoot", 阅读全文
posted @ 2023-05-14 19:39 不会JAVA的小袁 阅读(11) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ double values[]={1.23,35.56,653.7,4358.24}; for(int i=0;i<4;i++){ cout.width(10); cout<<values[i]<<e 阅读全文
posted @ 2023-05-14 19:30 不会JAVA的小袁 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<algorithm>#include<iterator>#include<vector>#include<iostream>using namespace std;template<class InputIt,class OutputIt>void mySort(InputIt f 阅读全文
posted @ 2023-05-14 19:22 不会JAVA的小袁 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<iterator>#include<algorithm>#include<functional>#include<iostream>using namespace std;template<class T>class IncrementIterator: public iterat 阅读全文
posted @ 2023-05-12 21:39 不会JAVA的小袁 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<numeric>#include<functional>#include<vector>using namespace std;int main(){ int iarray[]={1,2,3,4,5}; vector<int>ivector(ia 阅读全文
posted @ 2023-05-12 21:06 不会JAVA的小袁 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include<functional>#include<iostream>#include<vector>#include<algorithm>using namespace std;using namespace placeholders;int main(){ int intArr[]={30 阅读全文
posted @ 2023-05-12 20:48 不会JAVA的小袁 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<functional>#include<iostream>#include<vector>#include<algorithm>using namespace std;int main(){ int intArr[]={30,90,10,40,70,50,20,80}; const 阅读全文
posted @ 2023-05-11 13:47 不会JAVA的小袁 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<numeric> #include<functional> using namespace std; int main() { int a[]={1,2,3,4,5}; const int N=sizeof(a)/sizeof(int); co 阅读全文
posted @ 2023-05-11 13:30 不会JAVA的小袁 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<numeric>using namespace std;class MultClass{ public: int operator() (int x,int y) const{return x*y;}};int main(){ int a[]={ 阅读全文
posted @ 2023-05-11 13:26 不会JAVA的小袁 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 53 下一页