Advertisement
Guest User

barre.c

a guest
Oct 30th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /* barre-start.c */
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. #define CIFRA1 0
  7. #define CIFRA2 1
  8. #define CIFRA3 3
  9. #define CIFRA4 8
  10. #define CIFRA5 0
  11. #define CIFRA6 0
  12. #define CIFRA7 1
  13. #define CIFRA8 5
  14. #define CIFRA9 1
  15. #define CIFRA10 7
  16. #define CIFRA11 3
  17.  
  18. /* La cifra di controllo e' 5 */
  19.  
  20. /*
  21. Altri esempi:
  22. 05150024128 -> 8
  23. 03120001005 -> 6
  24. */
  25.  
  26.  
  27. int main (int argc, char *argv[])
  28. {
  29.  
  30. return EXIT_SUCCESS;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement