#include <iostream>
#include <conio.h>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main()
{int i,j,puan=0,test[3],n=0,top=0,top1=1;
char cevap1[10]={'A','B','B','C','A','B','C','A','B','B'},cevap2[10],ch,d[n],buffer[260];
srand(time(NULL));
FILE *Dosya;
Dosya=fopen("Dosya.txt","a+");
buffer[260]='\0';
fread (buffer,10,25,Dosya);
do
{
for( i=1; i<=3; i++)
{int a=rand()%10+1;
test[i]=a;
for(j=a*25; j<=25*a+25; j++)
{
cout<<buffer[j];}}
fclose(Dosya);
for(i=1; i<=3; i++)
{
cout<<i<<". sorunun cevabini giriniz"<<endl;
cin>>cevap2[test[i]];
if(cevap1[test[i]]==cevap2[test[i]])
puan=puan+1;}
cout<<"tekrar denemek istermisiniz???"<<endl;
cin>>ch;
n++;
d[n]=puan;
top=top+d[n];
top=top/n;
}
while((ch=='e') or (ch=='E'));
for(int k=1; k<=n; k++)
top1=top1+(d[k]-top)*(d[k]-top);
cout<<"Testler arasi standart sapma>>>> "<<sqrt(top1/n);
getch();
return 0;
}