Advertisement
Guest User

o que eu fiz errado agr?

a guest
Oct 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. main()
  5. {
  6.  
  7. float n1, n2, n3, n4, media;
  8. printf("Digite a nota do primeiro bimestre");
  9. scanf("%f", n1);
  10. printf("Digite a nota do segundo bimestre");
  11. scanf("%f", n2);
  12. printf("Digite a nota do terceiro bimestre");
  13. scanf("%f", n3);
  14. printf("Digite a nota do quarto bimestre");
  15. scanf("%f", n4);
  16.  
  17. media = (n1 + n2 + n3 + n4)/4;
  18. printf("Sua media e:%f\n", media);
  19. if (media >= 6);
  20. printf ("*BOA*\n");
  21. //Re:Zero Kara Hajimeru Isekai Seikatsu Opening
  22. printf ("https://www.youtube.com/watch?v=tUC578VmldU");
  23. if (media < 6);
  24. printf("Reprovado, pondere o suborno\n");
  25. //Sakamoto Desu Ga Ending
  26. printf("https://www.youtube.com/watch?v=guZ4hNyRmG4");
  27. printf ("Cabo");
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement