1_1.cpp
上传用户:zipjojo
上传日期:2009-07-20
资源大小:70k
文件大小:0k
源码类别:

文章/文档

开发平台:

C/C++

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