C语言表白窗口程序

 
#include<windows.h>
#include<stdio.h>
#include<string.h>
int main()
{
    char modeCommand[1024];
    sprintf(modeCommand,"mode con cols=%d lines=%d",20,10);
    system(modeCommand);
    while(MessageBox(NULL,("你喜欢我吗?"),("你愿不愿意做我女朋友?"),MB_YESNO)!=IDYES)
    {
       MessageBox(NULL,("我可以给你做饭吃啊"),("我很喜欢你呀"),MB_OK);
       MessageBox(NULL,("我愿意给你系衣服啊"),("我真的喜欢你"),MB_OK);
       MessageBox(NULL,("我愿意给你讲个事啊"),("我最喜欢你呀"),MB_OK);
       MessageBox(NULL,("我愿意给你做饭吃啊"),("我最喜欢你呀"),MB_OK);
    }
    MessageBox(NULL,("哇哇哇,你答应我啦"),("我最喜欢你呀"),MB_OK);
    MessageBox(NULL,("哈哈哈哈,太好啦"),("我最喜欢你啦"),MB_OK);
    return 0;
}
posted @ 2022-06-08 19:41  CJK'sBLOG  阅读(36)  评论(0编辑  收藏  举报