-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFujiwara.c
More file actions
47 lines (37 loc) · 1.06 KB
/
Copy pathFujiwara.c
File metadata and controls
47 lines (37 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Date: 2, June
* Author: Yosida
*/
#include <stdio.h>
#include "file.h"
#include "print_screen.h"
extern struct player p;
int Fujiwara(void)
{
int i;
int a;
fflush(stdin);
print_story("hahaha....よくぞここまで来れたな...\n");
print_story("時代は20xx年。私はMR.MAXの元で848年間修業を積んだ。\n");
print_story("こんな私を倒せるかな?? さあ、始めよう.....\n");
print_story("\t1:スパコンを差し入れる。\n");
print_story("\t2:謝る。\n");
print_story("\t3:喧嘩を売る。\n");
scanf("%d", &a);
if(a == 1){ /* スパコンを差し入れる */
print_story("何台だ? 台数によっては生かしておいてやろう。\n");
print_story("台数を入力しよう!! >\n");
scanf("%d", &i);
if(i >= 82) {
print_story("お前なかなかわかっているな。今回は見逃してやろう。\n");
} else {
print_story("ははは、冗談はその薄汚く気持ちの悪い顔だけにしろ。\n");
print_story("藤原は薄笑いを浮かべながらEnter Keyを噛みしめるように押した....\n"
"to be continude.....\n");
return 0;
}
} else if(a == 2) { /* 謝る */
} else if(a == 3) { /* 喧嘩を売る */
}
return 0;
}