Advertisement
Guest User

asdfafaf

a guest
May 27th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. printf ("Votos del Candidato a:\n%d votos\n",votos_a);
  2. printf("Porcentaje total de votos emitidos:\n%.2f%c\n",(votos_a*100.00) / total_votos, '%' );
  3.  
  4. printf ("Votos del Candidato b:\n%d votos\n",votos_b);
  5. printf("Porcentaje total de votos emitidos:\n%.2f%c\n",(votos_b*100.00) / total_votos, '%' );
  6.  
  7. printf ("Votos del Candidato c:\n%d votos\n",votos_c);
  8. printf("Porcentaje total de votos emitidos:\n%.2f%c\n",(votos_c*100.00) / total_votos, '%' );
  9.  
  10. printf ("Votos del Candidato d:\n%d votos\n",votos_d);
  11. printf("Porcentaje total de votos emitidos:\n%.2f%c\n",(votos_d*100.00) / total_votos, '%' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement