zoukankan      html  css  js  c++  java
  • 新年祝福!_20140101

    images

       1:  #if 1
       2:  #include <iostream>
       3:  #include <iomanip>
       4:  #include <string>
       5:   
       6:  using namespace std;
       7:  /*
       8:   *@brief:
       9:      新年祝福!
      10:   */
      11:  void NewYearsDay( void )
      12:  {
      13:      static int n = 1;
      14:      char yourName[365];
      15:      gets(yourName);
      16:      while ( n-- )
      17:      {
      18:          cout<<"Dear "<<yourName<<endl;
      19:          cout<<setiosflags(ios::internal)<<"	祝13年春节同14元旦一样令人难以忘记!"<<endl;
      20:          cout.width( 66 );
      21:          cout.fill( ' ' );
      22:          cout<<"何双泉 致上"<<endl;
      23:      }
      24:  }
      25:  int main(int argc, char* argv[])
      26:  {
      27:      NewYearsDay();
      28:      return 0;
      29:  }
      30:  #endif
  • 相关阅读:
    shell test -n -z
    java -d64
    shell export
    topngroupcollector
    stat 查看文件修改时间
    随机30道小学计算题02(修改)
    设计四则运算2程序单元测试用例
    学习进度02
    随机30道小学计算题02
    随机30道小学计算题01
  • 原文地址:https://www.cnblogs.com/uestc999/p/3500527.html
Copyright © 2011-2022 走看看