初级光能
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main(){
system("color F0");
int i,a[4],ans;
string t[4];
t[0]="1,2,3,4,5,6,7";
t[1]="1,3,5,7";
t[2]="2,3,6,7";
t[3]="4,5,6,7";
cout<<"\n\n\n\n\n\n\n\n\n\n";
cout<<" |================|\n";
cout<<" | |\n";
cout<<" | 读心术 |\n";
cout<<" | |\n";
cout<<" | |\n";
cout<<" | ---kxc|\n";
cout<<" |================|\n";
system("pause");
system("cls");
cout<<"\n\n\n\n\n\n\n\n\n\n 在以下7个数中,选一个记在心中\n";
cout<<" "<<t[0]<<endl;
system("pause");
for(int i=1;i<=3;i++){
system("cls");
cout<<" "<<i<<" 问:下面的数中,有你想的吗? 0-没有 1-有\n ";
cout<<" "<<t[i]<<endl;
do{
cin>>a[i];
}while(a[i]<0||a[1]>1);
}
ans=4*a[3]+2*a[2]+a[1];
system("cls");
cout<<" 你心中的数是:"<<ans<<"\n\n\n\n";
return 0;
}
高级启示者
高级守护
#include <iostream>
#include <windows.h>
using namespace std;
int n;
void Print(string s, int k) {
for(int i=0; i<s.size(); i++) {
cout<<s[i];
Sleep(k);
}
}
int main () {
Print("超准的心理小测试:测测你是什么性格的人\n请问您最喜欢的数字是什么呢\n", 20);
Sleep(500);
for(int i=1; i<=9; i++)
cout<<i<<" ";
Sleep(500);
Print("\n请选一个:", 20);
cin>>n;
Print("\n......", 500);
Print("测试结果已经出来了", 20);
system("pause");
Print("您是一个 喜欢数字", 20);
cout<<n;
Print("的人", 20);
return 0;
}
初级光能