Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //El Programa emite un BEEP por cada resultado Correcto!
- #include <stdio.h>
- int main(int argc, char *argv[])
- {
- float a,b,c,d;
- c=0;
- printf("Programa para adivinar Suma de numeros\n");
- do{
- system("CLS");
- printf("Son 6 Resultados correctos para finalizar!! \nUsted lleva %.0f\n",c);
- a=rand() % 256;
- b=rand() % 512;
- printf("Cuanto es la suma de %.0f + %.0f ?? \n",a,b);
- scanf("%f",&d);
- if (d==(a+b)){
- printf("\a");
- c++;
- }
- }while(5>=c);
- printf("Cantidad de Respuestas Correctas: %.0f\n",c);
- printf("Programa Finalizado\n");
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement