Código PHP:
#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
main (){
int pb=0,pm=0,j,i;
int rtau[98];
char n[30];
int rtas[]={24628213,413651,78897,1246,82465882,96423};
printf("BIENVENIDO AL TEST");
cout<<"\n\n Para llevar su registro, por favor digite su nombre ";
gets(n);
cout<<"\n\n TEST DE DIGITACION \n\n";
for(i=0; i<=6; i++){
cout<<" ";
cout<<rtas[i];
cout<<" : ";
cin>>rtau[i];
}
cout<<"\n CALIFICACION DEL SEÑOR (A) " <<n;
for (i=0; i<=6; i++){
if (rtas[i] == rtau[i]){
pb = pb + 1;
}
}
pm = 10 - pb;
cout<<"\n\n Respuestas acertadas: "<<pb;
cout<<"\n\n Respuestas erradas: "<<pm;
getch ();
}
Gracias