- # include <iostream.h>
- # include <stdio.h>
- void print();
- void main()
- {
- char s[20];
- cout<<"欢迎阅读本书!敬请提出建议!"<<endl;
- cout<<"本书对你的点滴帮助,是作者的最大心愿!"<<endl;
- cout<<endl<<"输入你的姓名,笑纳作者的祝愿"<<endl;
- cin>>s;
- print();
- }
- void print()
- {
- printf("甘美的果实永远属于辛勤耕耘的人,多年的苦读将使你n");
- printf("人生不同凡响!光彩夺目!n");
- }