Cで基本形作ってみた・・・。
当方プログラム暦2ヶ月の若造です・・・。(泣

#include<stdio.h>

void main(){

int life = 3;
int point = 0;
char buf = 0;
char ans = 0;

while(life > 0){

buf = rand()%93 + 33;
printf("%cを打て!!\n", buf);
fflush(stdin);
ans = getchar();

if(buf == ans){
printf("Hit!!\n");
}else{
printf("Miss!! Life -1\n");
life--;
}

}
printf("終わりだ、氏ね!!")

}