首页 > 电脑

c语言编程,多次运行,弹出多个弹窗

更新时间2019-07-28 05:44:41

一个循环的c语言,运行之后会不停弹窗,比如:我要求运行后输出我长得真帅{printf("我长得真帅“”);}然后就一直弹窗出“我长得真帅“,直到我按某个键后停止。

给你个参考吧

#include <windows.h>

static BOOL bExitApp = FALSE;

const  UINT uiTimerID = 10;

static int nCount = 0;

void CALLBACK FooTimerFun( HWND h, UINT u1, UINT u2, Dword  u3)

{

 

   MessageBox(0,"aa","bb",0);

}

 

int main()

{

    MSG msgFoo;

    SetTimer( NULL , uiTimerID , 1000 , FooTimerFun );

    while( !bExitApp && GetMessage( &msgFoo , NULL , 0 , 0 ) )

        {

            TranslateMessage( &msgFoo );

            DispatchMessage( &msgFoo );

 

        }

    KillTimer( NULL , uiTimerID );

    return 0;

}


它会每一秒弹出窗口(内容自己定)

直到你关闭原DOS窗口(也可以加其它条件,自己完成下)


相关标签:c语言

上一篇:c语言能不能插入图片和声音

下一篇:数据机房建设干什么的