c++
地方门户网站系统
这个作者很懒,什么都没留下…
展开
-
c++ 基础 指针访问数组两种方法 下标法 指针法
#include void main( ) { int a[5]={23,12,45,33,67},*p=a,i; cout<<"下标方式:"; for (i=0;i<5;i++) cout<<p[i]<<"\t"; cout<<endl; cout<<"指针方式:"; for (p=a;p<a+5;p++) cout<<*p<<"\t"; cout<<endl; }对以上原创 2011-10-23 17:43:50 · 7154 阅读 · 0 评论 -
c++ 基础 指针类型
#include void main() { int x=100,y,*ip; ip=&x; *ip=200; y=*ip+100; cout<<"x="<<x<<"y="<<y<<"*ip="<<*ip<<endl; y=*ip; cout<<"x="<<x<<"y="<<y<<"*ip="<<*ip<<endl; } */ 对以上一段程序的理解说明: 包含头文件ios原创 2011-10-23 14:10:15 · 555 阅读 · 0 评论 -
C++基础 枚举类型
#include void main() { enum SharpShooter { LOCKED=1,AIM ,SHOOT}; SharpShooter state; int i; cout<<"请选择(1)锁定 (2)瞄准 (3) 射击"<<endl; cin>>i; state=enum SharpShooter(i); switch(state) { ca原创 2011-10-23 13:55:20 · 557 阅读 · 0 评论