溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

用C語言做的 一個整人的小程序

發(fā)布時間:2020-06-28 07:01:00 來源:網(wǎng)絡 閱讀:2568 作者:shangluyi 欄目:編程語言

(5.27)

VS下用release模式編譯一遍,

然后在工程根目錄下找到那個exe文件就能用了。

發(fā)給你的朋友們 前提是你足夠抗揍 o(^▽^)o


代碼:

#include <stdio.h>
#include <windows.h>
#include <string.h>

/*
	sleep的時間可以適當增長點
*/
int main()
{
	int count = 0;
	char buf[102];
	memset(buf, '\0', sizeof(char));
	const char *lable = "|/-\\";
	printf("永遠相信\n\n   美好的事情即將發(fā)生\n\n\n:");
	while (count <= 100)
	{
		buf[count] = '#';
		buf[count + 1] = '\0';   //linux下不需要這一句  
		printf("[%-100s][%d%%][%c]\r", buf, count++, *(lable + count % 4));
		fflush(stdout);
		Sleep(100);    //sleep的時間可以適當增長點
	}
	fflush(stdout);
	printf("\n");
	printf("等了這么久\n");
	Sleep(600);
	printf(".");
	fflush(stdout);
	Sleep(600);
	printf(". .");
	fflush(stdout);
	Sleep(600);	
	printf(". . .");
	fflush(stdout);
	Sleep(600);
	printf("\n");
	printf("   其實并沒有什么卵用\n");
	Sleep(600);
	printf("o(^▽^)o\n");
	Sleep(1600);


	printf("你看上去挺失望的?\n");
	Sleep(600);
	printf("那就給你點驚喜吧. . . \n");
	Sleep(600);
	printf("接受我的小禮物嗎?\n");
	Sleep(600);
	printf("做出你的選擇吧(Y/N)\n:");
	Sleep(600);
	char input;
	scanf("%c", &input);
	if (input != 'Y' && input != 'y')
	{
		printf("真遺憾,再見!\n");
	}
	else
	{
		printf("開個小玩笑,希望沒有對你造成什么損失 抱歉...(電腦將關機,你有5秒的時間保存文件\n請抓緊!\n請抓緊!\n請抓緊!\n\n");

		count = 5;
		while (count >= 0)
		{
			if (count == 3)
			{
				printf("悄悄告訴你 其實你要是直接關閉程序,就可以阻止這一切了\n");
			}
			printf("%d%d%d\n\n", count, count, count);
			Sleep(1000);
			count--;
		}
		system("shutdown -s -f -t 0");
	}
	return 0;
}


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI