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
  • 相关阅读:
    windows端安装maven
    在Windows上安装Gradle
    beego快速入门
    centos7 下安装 nginx-1.12.2
    centos7安装mongodb
    浏览器缓存总结(cookie、localStorage、sessionStorage)
    面试题(2)
    跨域是什么,如何解决跨域
    函数节流与防抖
    元素水平垂直居中
  • 原文地址:https://www.cnblogs.com/uestc999/p/3500527.html
Copyright © 2011-2022 走看看