C++大作业(通讯录)
Rest
这个作者很懒,什么都没留下…
展开
-
通讯录C++console application
#include #include #include #include #include #include //#include using namespace std; string ID;//具有唯一性 class Person { protected: string No; //学号 string Age;//年龄 string QQ;//QQ号码 char Name[20];原创 2011-12-26 18:11:30 · 1387 阅读 · 0 评论 -
1746. DreamingAboutCarrots
#include using namespace std; int main() { int x1,y1,x2,y2,a,b,c,d; while(cin>>a>>b>>c>>d) { x1=(a<c)?a:c; x2=(a<c)?c:a; y1=(b<d)?b:d; y2=(b<d)?d:b; if(x1==x2) { if(y2-y1>1) co原创 2012-03-17 09:49:46 · 672 阅读 · 0 评论