[求助]这几个程序谁能讲解一下……?
#include <iostream.h>int i;
main()
{ i=5;
{ int i;
i=7;
::i=3; cout <<”i=”<<i<<endl;
}
cout <<”i=”<<i<<endl;
}
为什么答案是i=7
i=3
#include<iostream.h>
#include<string.h>
void main()
{ char *a[5]={ “sofa”,”chair”,”bed”,”table”,”desk”},*r;
r=a[0];
for(int i=1;i<5;i++)
if(strcmp(r,a[i])>0)r=a[i];
cout<<r<<endl;
}
答案是bed……怎么来的
#include <iostream.h>
void main( )
{char str[ ]=”1234567”;
int i;
for(i=0; i<7; i+=3)
cout<< str+i<<endl;
}
这段里的str+i……怎么说的啊?
还有……这段程序能不能详细讲一下,我一点也看不懂
#include <iostream.h>
class Point
{public:
Point(int x, int y){ _x=x;y=y;}
Point(char x, char y){ _x=x;y=y;}
void Display() {cout << ”(” << _x << ”, ” << _y << ”)” << endl;}
protected:
int _x, _y;
};
void main()
{
Point a(1, 2);
Point b(‘a’,’b’);
a.Display();
b.Display();
}
暂时就这些问题…………
[此贴子已经被作者于2007-6-29 21:02:41编辑过]