-
关注Ta
-
- 注册时间 2007-04-20
- 最后登录 2018-06-18
- 在线时间1718小时
-
- 发帖4071
- 搜Ta的帖子
- 精华0
- 派派币19702
- 威望7693
- 鲜花0
- 鸡蛋0
- 在线时间1718 小时
-
访问空间加好友用道具
2011年我在战斗的一年~
|
- #include<iostream>
- #include<windows.h>
- using namespace std;
- int main()
- {
- char heart[10][10]=
- {
- {' ',' ','*','*',' ','*','*',' ',' ',' '},
- {' ','*',' ',' ','*',' ',' ','*',' ',' '},
- {' ','*',' ',' ','*',' ',' ','*',' ',' '},
- {' ','*',' ',' ',' ',' ',' ','*',' ',' '},
- {' ',' ','*',' ',' ',' ','*',' ',' ',' '},
- {' ',' ','*',' ',' ',' ','*',' ',' ',' '},
- {' ',' ',' ','*',' ','*',' ',' ',' ',' '},
- {' ',' ',' ','*',' ','*',' ',' ',' ',' '},
- {' ',' ',' ',' ','*',' ',' ',' ',' ',' '},
- {' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
- };
- int index=0;
- while(1){
- for(int i=0;i<10;++i){
- for(int ii=0;ii<index;++ii)
- cout<<' ';
- for(int j=0;j<10;++j)
- cout<<heart[i][j]<<' ';
- cout<<"お诞生日おめでとうございます!";
- cout<<endl;
- }
- index=(index+1)%15;
- Sleep(300);
- system("cls");
- }
- return 1;
- }
|