/*広告*/

/*[C言語]サンプルプログラム集 タイピングゲームソース*/

/*目次へ戻る*/

#include <stdio.h> #include <stdlib.h> #include <conio.h> #include <time.h> void timer(void); int main(){ int key = 0; int i = 0; int rnd = 0; int count = 0; int score = 0; int mistake = 0; srand((unsigned)time(NULL)); for(count = 10;count > 0;count--){ rnd = (rand() % 26); system("cls"); printf("得点%d点 ミス%d回 残り回数%d回",score,mistake,count); printf("\n"); for(i=0;i<80;i++){ printf("%c",(97 + rnd)); timer(); if(_kbhit()){ key = _getch(); if(key == 0 || key == 224)key = _getch(); break; } } if(key == (rnd + 97)){ score++; } else{ mistake++; } } system("cls"); printf("結果\n"); printf("得点%d点 ミス%d回 残り回数%d回\n",score,mistake,count); printf("おしまい\n"); return 0; } void timer(){ int i,j; for(i=0;i<3000;i++){ for(j=0;j<3000;j++){ } } }

/*ページの先頭へ*/

/*目次へ戻る*/

/*HOME*/

/*Copyright 2016 K.N/petitetech.com*/

/*広告*/