C++
文章平均质量分 67
Proxbj
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言查找算法。
#include <iostream>using namespace std;template <class Type>int bisearch(Type a[],const Type& x,int low,int high);int main(){ string x[10],y; int n,i; cout<<"Input the num:"; cin>>n; printf("input %d s...原创 2020-09-21 19:35:30 · 242 阅读 · 0 评论 -
最简单的判断奇偶
//最简单的判断奇偶#include using namespace std;int Iseven(int x);void Iseven1(int x,int &r);int main()//even-1;odd-0{int r;int a,r1;cin>>a;r=Iseven(a);Iseven1(a,r1);cout<<r<<endl<<r1<<endl;return 0;}int Iseven(int x原创 2020-09-07 20:05:24 · 702 阅读 · 0 评论
分享