• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

oga's tools


File Info

Rev. 2b80abcdeb00aad07aa265bd434df3975aadbb9a
크기 1,289 bytes
Time 2024-12-10 04:54:07
Author hyperoga
Log Message

add color() func

Content

/*
 *  kita2.c
 *    2ch kitaaaaaa...
 *
 *    2002/03/03 by oga.
 *    2005/02/11 for http://pc5.2ch.net/test/read.cgi/unix/1019380983/ #138 by oga.
 */
#include <stdio.h>

int main(int a, char *b[])
{
    int i;
    char *kita[7] = {
        "(゚∀゚)",
	"( ゚∀)",
	"(  ゚)",
	"(  )",
	"(  )",
	"(゚  )",
	"(∀゚ )"
    };

    printf("\n");
    printf("      *  ※ ☆   ※ ※   ☆ ※  *\n");
    printf("     *  ※ ☆  ※   ※   ※  ☆ ※  *\n");
    printf("    * ※ ☆ ※   ※ ☆ ※  ※ ☆ ※ *\n");
    printf("   * ※ ☆ ※  ※ ☆  .☆ ※  ※ ☆ ※ *\n");
    printf("  * ※ ☆ ※ ※☆     ☆※ ※ ☆ ※ *\n");
    printf("\n\n\n\n\n\n");

    while (1) {
        for (i = 0; i < 7; i++) {
            printf("%cM%cM%cM%cM%cM%cM", 27, 27, 27, 27, 27, 27);
            printf("  * ※キタ━━━━━%s━━━━━ !!!※ *\n", kita[i]);
            printf("  * ※ ☆ ※ ※☆     ☆※ ※ ☆ ※ *\n");
            printf("   * ※ ☆ ※  ※ ☆  .☆ ※  ※ ☆ ※ *\n");
            printf("    * ※ ☆ ※   ※ ☆ ※  ※ ☆ ※ *\n");
            printf("     *  ※ ☆  ※   ※   ※  ☆ ※  *\n");
            printf("      *  ※ ☆   ※ ※   ☆ ※  *\n");
	    usleep(200000);
	}
    }
}