首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴jude1990的代码贴C++
#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
template <class T>
T max(T a[],int n)
{
    T max=a[0];
    for (int i=0;i<n;i++)
        if (a[i]>max)
            max=a[i];
    return max;
......................
阅读全部 | 2012年8月17日 14:59
#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
void swap(int &,int &);
void main()
{
    int a=2,b=10;
    swap(a,b);
    cout<<"a="<<a<<",b="<<b<<endl;
}
void swap(int &a,int &b)
......................
阅读全部 | 2012年8月17日 08:49
#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
class Date
{
    int year,month,day;
public:
    Date(int y,int m,int d)
    {
        year=y;
        month=m;
......................
阅读全部 | 2012年8月16日 23:31
#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
int s=0;
class Sample
{
public:
    int m,n;
    void disp()
    {
        cout<<"m="<<m<<endl;
......................
阅读全部 | 2012年8月16日 09:39
#include<iostream>
//#include<iomanip>
//#include<cmath>
float (*parea)(float);
float circle(float r);
float rect(float a,float b);
void main()
{
    using namespace std;
    float r=3.5,a=4,b=5;
    parea=circle;
    cout<<"半径为"<<r<<"的圆的面积为"<<parea(r)<<endl;
......................
阅读全部 | 2012年8月15日 18:36
#include<iostream>
#include<iomanip>
//int findScore(char *name[],int *p2,int n);
void main()
{
    using namespace std;
    char *name[]={"Smith","John","Mary","Harvard","Kai"};
    int score[]={87,89,72,96,66};
    char nam[10];
    cout<<"请输入姓名:";
    cin>>nam; 
    for (int i=0;i<5;i++)
......................
阅读全部 | 2012年8月15日 18:29
#include<iostream>
#include<iomanip>
int findMax(int *p,int n);
int calAverage(int *p,int n);
void main()
{
    using namespace std;
    int a[]={32,56,24,87,61,8,19,42,34,98};
    cout<<"Max is "<<findMax(a,10)<<endl;
//    cout<<"Average is "<<calAverage(a,9)<<endl;
}
int findMax(int *p,int n)
......................
阅读全部 | 2012年8月15日 18:03
#include<iostream>
#include<iomanip>
void main()
{
    using namespace std;
    int *p[2];
    p[0]=new int[3];
    p[0][0]=1;
    p[0][1]=2;
    p[0][2]=3;
    int a[3]={4,5,6};
    p[1]=a;
......................
阅读全部 | 2012年8月15日 17:48
#include<iostream>
#include<iomanip>
int add(int,int);
int (*pAdd)(int,int);
void main()
{
    using namespace std;
    int i=1,j=1;
    pAdd=add;
    cout<<"i+j="<<pAdd(i,j)<<endl;
}
int add(int i,int j)
......................
阅读全部 | 2012年8月15日 17:28
#include<iostream>
#include<iomanip>
int *fun();
void main()
{
    using namespace std;
    int *p;
    p=fun();
    while(*p!=0)
        cout<<*p++<<"、";
    cout<<endl;
}
......................
阅读全部 | 2012年8月15日 17:18
1 2 下一页
jude1990