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

#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;
}

原文地址:https://www.cnblogs.com/riasky/p/3476494.html