鸣人传

chenweiqi 2020-05-14 20:26:47 2020-05-19 20:02:01 2
#include <bits/stdc++.h>
using namespace std;
int main()
{
	char a,b,c,d,e,f; 
    cout<<"你是漩涡·鸣人,平时大家都叫你‘九尾小鬼’!面对嘲笑,你会怎么做。"<<endl;
    cout<<"A 被九尾侵蚀,毁灭木叶		B 无所作为		C 恶作剧		D 变强";
	cin>>a; 
	if (a=='C' || a=='D'){
		cout<<"佐助叛逃,你会怎么做?"<<endl;
		cout<<"A 带回宇智波·佐助		B 啥也不做		C 被九尾侵蚀,毁灭木叶";
		cin>>b;
		if (b=='A'){
			cout<<"你没能带回宇智波·佐助,你会怎么做?"<<endl;
			cout<<"A 发怒被九尾侵蚀,毁灭木叶		B 啥也不做		C 继续变强";
			cin>>c;
			if (c=='C'){
				cout<<"佩恩将你师父杀死了"<<endl;
				cout<<"A 发怒被九尾侵蚀,毁灭木叶		B 修炼‘仙人模式’";
				cin>>d;
				if (d=='A'){
					cout<<"你的寿命被减少,卒"; 
				} 
				else if (d=='B'){
					cout<<"第四次忍界大战开始了"<<endl;
					cout<<"A 苟一苟活更久		B 杀鸭";
					cin>>e;
					if (e=='A'){
						cout<<"辉夜复活,卒";
					}
					else if (e=='B'){
						cout<<"你和宇智波·佐助联合封印老母(辉夜),佐助要和你决战"<<endl;
						cout<<"A 来呀		B 苟一苟活更久";
						cin>>f;
						if (f=='A'){
							cout<<"救回佐助,娶了白富美(雏田),当上CEO,成为人生赢家";
						}
						else{
							cout<<"佐助发怒将你干死";
						}
					}
				}
			}
			else{
				cout<<"你被鼬恨死一滩血";
			} 
		} 
		else{
			cout<<"你被鼬恨死一滩血";
		}
	} 
	else{
		cout<<"你被佐助吊打,被气死了!";
	}
    return  0;
}
{{ vote && vote.total.up }}