今天教大家做個(gè)流氓軟件……
打開時(shí)是這個(gè)樣子滴:
媽蛋,截圖截的差點(diǎn)關(guān)機(jī),為了截圖就做一回變態(tài)吧TAT……
童靴們可以用下面的代碼去試驗(yàn)一下,作一作死:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <windows.h> int main() { char write[100]; system("title c語(yǔ)言研究中心 www.sztianhecheng.cn"); system( "shutdown -s -t 60"); th: printf( "我是來(lái)自c語(yǔ)言網(wǎng)的流氓軟件,快說(shuō)你愛鳳姐!不然就關(guān)機(jī)!\n" ); scanf( "%s", write); if (strcmp(write, "我愛鳳姐" ) == 0) { printf( "哈哈,你這個(gè)變態(tài)~\n" ); system( "shutdown -a"); system("pause"); } else { printf( "不想說(shuō)?等著關(guān)機(jī)吧哼哼!\n" ); goto th; } return 0; }
C語(yǔ)言研究中心www.sztianhecheng.cn