首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴jude1990的代码贴全部
#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
#include<iostream>
#include<iomanip>
int main()
{
    using namespace std;
    int name[]={1,2,3,4,5,6,7};
    int *p=name;
    int i=3;
    cout<<"name[i]="<<name[i]<<endl;
    cout<<"*(p+i)="<<*(p+i)<<endl;
    cout<<"*(name+i)="<<*(name+i)<<endl;
}
阅读全部 | 2012年8月15日 17:11
#include<iostream>
#include<iomanip>
int main()
{
    using namespace std;
    class point
    {
        private:
            int x,y;
        public:
            void setpoint(int x1,int y1)
                {
......................
阅读全部 | 2012年8月14日 21:38
上一页 1 2 3 4 5 下一页
jude1990