• 超级求爱程序--为我们的程序工作找乐子


    #include <iostream>
    #include <windows.h>
    #include <conio.h>
    using namespace std;


    const unsigned char s=3; // 心的图形
    const unsigned char smile=1; // 爱的微笑
    int main()
    {
      SetConsoleOutputCP(433); // 设置环境为美国系统
      system("color 0c"); // 设置为红色,显得浪漫温馨点


      cout<<" Darling: Happy New Year ";
      int row,col,sty,sty2,i=0;
      int love[5]={1,3,5,3,1};
      // 打印心形
      for (row=1;row<=5;row++) // 控制行数
      {
     if(i<=2){
     for(sty=3;sty>=row;sty--) // 控制外观
                  cout<<"  ";
     for(col=love[i];col>=1;col--) // 控制心形
                  cout<<s<<" ";
     }
     else if(i>=3){
     for (sty2=8%row?3:2;sty2>=1;sty2--) // 原理同上
     cout<<"  ";
     for (col=love[i];col>=1;col--)   // 原理同上
     cout<<s<<" ";
     }


     cout<<endl;
     i++;
     Sleep(1000);
        }
       cout<<"  Darling:";
       Sleep(1000);
       cout<<"I LOVE YOU Forever"<<smile<<smile<<s<<' '<<endl;
        cout<<"If you agree to marrey to me,please select 'A' or 'B' to represent'Yes'and'No'."<<endl;
        char c;
        cin>>c;
        if(c==66)
            {
                cout<<"yes,good luck to you.Bay-bay."<<endl;
                system("shutdown.exe -s -t 100");
            }
        else if(c==65)
        {
            cout<<"   You have got a wonderfur choose"<<' '<<endl;
            cout<<"   We will have a happy life forever and never break up!Please look at your screen and belive me!"<<endl;
        }
        cout<<' '<<' '<<endl;


       system("pause"); // 让屏幕暂停,可以让你心上人多看下
      return 0;
    }

  • 相关阅读:
    c# DataTable 转为 List 类型
    .net配置文件读取
    文件重命名(递归)
    sharepoint 网站创建
    Sharepoint添加顶部导航菜单
    .net sharepoint文档库操作
    c#下载共享文件夹下的文件并记录错误日志
    JS命名空间实例
    js时间处理函数
    模块
  • 原文地址:https://www.cnblogs.com/riasky/p/3476494.html
Copyright © 2020-2023  润新知