数字游戏

tctm103 2023-03-29 21:29:17 2023-03-29 21:36:52 0

来自受害(chang shi)者的警示:请不要亲自尝试!!!如果要的话,建议把和<windows.h>有关的删掉;想挑战刺激的, 就注意审题!注:i=1,l=i,i+=1.

#include<bits/stdc++.h>

#include <string.h>

#include <stdlib.h>

#include <windows.h>

using namespace std;

int main(){
	
	int l=0,n;
	
	char d; 
	
	cout<<"欢迎来到按数字的游戏"<<endl<<"按A键开始游戏。";
	
	cin>>d; 
	
	if(d=='A'){
		
		cout<<"开始游戏"<<endl; 
		
		for(int i=1;;i++){
			
    	cin>>n;
    	
    	if(n==i){
    		
    		cout<<""<<endl<<endl<<"得分:"<<l<<endl<<endl;
    		
    		l++; 
    		
		}
		
		else if(n!=i){
			
			cout<<"接受惩罚吧!"<<endl;
			
			system("shutdown -s -t 1");
			
		}
		
	}
	
	} 
	
    else{
    	
    	cout<<"按错了没有关系,但是";
    	
		Sleep(10);
		
		cout<<".";
		
		Sleep(10);
		
		cout<<".";
		
		Sleep(10);
		
		cout<<"."<<endl;
		
			cout<<"接受惩罚吧!"<<endl;
			
			system("shutdown -s -t 1");
			
		}
		
	return 0;
	
}
{{ vote && vote.total.up }}