求C语言编写的表白程序,要代码

求C语言编写的表白程序,要代码,第1张

#define IdYes 1002

#define IdNo 1003

#define IdStatic 1004

#define IdTimer 1005

#define Width 640

#define Height 480

#define Tick 2000

#include<windows.h>

int x,y

RECT rdesk

HINSTANCE hinst

HWND hyes,hno

BOOL quit=FALSE

LRESULT CALLBACK WndProc(HWND hwnd,UINT Message,WPARAM wParam,LPARAM lParam)

{

HDC hdc

PAINTSTRUCT ps

RECT rclient

HBRUSH hbrbkgnd

static COLORREF c

static BYTE r,g,b

switch(Message)

{

case WM_TIMER:

if(IdTimer==LOWORD(wParam))

{

r=(BYTE)(rand()%256)

g=(BYTE)(rand()%256)

b=(BYTE)(rand()%256)

c=RGB(r,g,b)

InvalidateRect(hwnd,NULL,TRUE)

UpdateWindow(hwnd)

}

break

case WM_PAINT:

hdc=BeginPaint(hwnd,&ps)

hbrbkgnd=CreateSolidBrush(c)

SelectObject(hdc,hbrbkgnd)

GetClientRect(hwnd,&rclient)

FillRect(hdc,&rclient,hbrbkgnd)

DeleteObject(hbrbkgnd)

EndPaint(hwnd,&ps)

break

case WM_COMMAND:

switch(LOWORD(wParam))

{

case IdYes:

quit=TRUE

MessageBox(hwnd,TEXT("回答正确,太太太好了!"),TEXT("宝贝"),MB_ICONEXCLAMATION|MB_OK)

SendMessage(hwnd,WM_CLOSE,0,0)

break

case IdNo:

MessageBox(hwnd,TEXT("回答错误哦,我很生气呢!"),TEXT("宝贝"),MB_ICONEXCLAMATION|MB_OK)

break

}

break

case WM_SIZE:

case WM_MOVE:

SetWindowPos(hwnd,HWND_TOPMOST,x,y,Width,Height,SWP_SHOWWINDOW)

break

case WM_DESTROY:

PostQuitMessage(0)

break

case WM_CLOSE:

if(quit)

{

KillTimer(hwnd,IdTimer)

DestroyWindow(hwnd)

}

break

case WM_CREATE:

CreateWindow(TEXT("Static"),

TEXT("请回答:做我女朋友好吗?"),

WS_CHILD|WS_VISIBLE|SS_CENTER,

200,

200,

240,

20,

hwnd,

(HMENU)IdStatic,

hinst,

NULL

)

hyes=CreateWindow(TEXT("Button"),

TEXT("好"),

WS_CHILD|WS_VISIBLE|BS_CENTER,

270,

230,

45,

20,

hwnd,

(HMENU)IdYes,

hinst,

NULL

)

hno=CreateWindow(TEXT("Button"),

TEXT("不好"),

WS_CHILD|WS_VISIBLE|BS_CENTER,

325,

230,

45,

20,

hwnd,

(HMENU)IdNo,

hinst,

NULL

)

SetTimer(hwnd,IdTimer,Tick,NULL)

break

default:

return DefWindowProc(hwnd,Message,wParam,lParam)

}

return 0

}

int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)

{

WNDCLASSEX wc

HWND hwnd

MSG msg

hinst=hInstance

srand(time(NULL))

memset(&wc,0,sizeof(wc))

wc.cbSize=sizeof(WNDCLASSEX)

wc.lpfnWndProc=WndProc

wc.hInstance=hInstance

wc.hCursor=LoadCursor(NULL,IDC_ARROW)

wc.hbrBackground=(HBRUSH)(COLOR_WINDOW+1)

wc.lpszClassName=TEXT("WindowClass")

wc.hIcon=LoadIcon(NULL,IDI_APPLICATION)

wc.hIconSm=LoadIcon(NULL,IDI_APPLICATION)

if(!RegisterClassEx(&wc))

{

MessageBox(NULL,TEXT("窗口注册失败!"),TEXT("错误"),MB_ICONEXCLAMATION|MB_OK)

return 0

}

GetWindowRect(GetDesktopWindow(),&rdesk)

x=(rdesk.right-Width)/2

y=(rdesk.bottom-Height)/2,

hwnd = CreateWindowEx(WS_EX_TOPMOST,

TEXT("WindowClass"),

TEXT("I Love You"),

WS_THICKFRAME|WS_VISIBLE,

x,

y,

Width,

Height,

NULL,NULL,hInstance,NULL)

if(NULL==hwnd)

{

MessageBox(NULL,TEXT("窗口创建失败!"),TEXT("错误!"),MB_ICONEXCLAMATION|MB_OK)

return 0

}

while(GetMessage(&msg,NULL,0,0)>0)

{

TranslateMessage(&msg)

DispatchMessage(&msg)

}

return msg.wParam

}

截图

#include<iostream>

using namespace std

void prinstar(void)

{

cout<<" 爱爱爱爱爱爱爱爱爱爱爱爱爱"<<endl

cout<<" 爱"<<endl

cout<<" 爱 "<<endl

cout<<" 爱"<<endl

cout<<" 爱"<<endl

cout<<" 爱"<<endl

cout<<" 爱"<<endl

cout<<" 爱"<<endl

cout<<" 爱爱爱爱爱爱爱爱爱爱爱爱爱爱爱爱爱爱爱"<<endl

}

void print_message(void)

{ cout<<" "<<endl

cout<<""<<endl

cout<<""<<endl

cout<<" "<<endl

cout<<"爱 爱爱 爱爱爱爱爱爱爱"<<endl

cout<<"爱 爱爱 爱 爱 爱"<<endl

cout<<"爱爱爱 爱 爱 爱"<<endl

cout<<"爱 爱 爱 爱 爱爱"<<endl

cout<<"爱 爱 爱 爱爱 爱爱爱爱爱爱"<<endl

cout<<"爱 爱 爱爱 爱 爱 "<<endl

cout<<"爱爱爱 爱爱 爱"<<endl

cout<<"爱 爱 爱 爱 爱 爱"<<endl

cout<<"爱爱爱爱爱 爱 爱 爱爱爱爱爱爱"<<endl

}

void message(void)

{ cout<<" "<<endl

cout<<""<<endl

cout<<""<<endl

cout<<" "<<endl

cout<<" 爱 爱 爱 爱 爱"<<endl

cout<<" 爱爱爱爱 爱 爱 "<<endl

cout<<" 爱 爱 爱爱 爱 爱 "<<endl

cout<<"爱 爱爱 爱爱 爱 "<<endl

cout<<" 爱爱 爱爱 爱 爱"<<endl

cout<<"爱爱爱 爱 爱 "<<endl

cout<<"爱 爱 爱 爱爱爱"<<endl

cout<<"爱 爱 爱 爱 爱 爱"<<endl

cout<<"爱爱 爱爱 爱 爱"<<endl

cout<<"爱 爱爱"<<endl

}

int main(void)

{

prinstar()

print_message()

message()

return 0

}

好像有好多运行不了,我也不知道怎么回事,毕业好多年了,现在连C语言是啥都不知道了,哎,岁月是吧杀猪刀啊

浪漫表白效果:

开发环境:Visual Studio 2019 + EasyX图形库插件即可

源码展示:

以上就是我们表白程序的源码了!最后祝大家都能和喜欢的人在一起哦~

我的C/C++编程学习基地,点击正在跳转「链接」即可加入,欢迎有问题的小伙伴一起进来学习交流嗷~


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/7934658.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存