Advertisement
hocikto19

Untitled

Nov 12th, 2013
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.05 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define LADENIE_ZAKLADNE
  4. #define LADENIE_PODROBNE
  5. int main() {
  6.     FILE *fr;
  7.     float suma, cislo, sucet=0.;
  8.     fr=fopen("suma.txt", "r");
  9. #if defined(LADENIE_ZAKLADNE) || defined(LADENIE_PODROBNE)
  10.     printf("Otvaranie suboru\n");
  11. #endif
  12.     if(fr==NULL)
  13.     {
  14.         exit(1);
  15.     }
  16.     else
  17.     {
  18. #ifdef LADENIE_PODROBNE
  19.         printf("Subor otvoreny\n");
  20. #endif
  21.         ;
  22.     }
  23. #if defined(LADENIE_ZAKLADNE) || defined(LADENIE_PODROBNE)
  24.     printf("Kontrola sumy");
  25. #endif
  26.     fscanf(fr,"%f", &suma);
  27.     while(!(feof(fr)))
  28.     {
  29.         fscanf(fr,"%f", &cislo);
  30.         sucet+=cislo;
  31. #ifdef LADENIE_PODROBNE
  32.         printf("Suma: %f\n", sucet);
  33. #endif
  34.     }
  35. #if defined(LADENIE_ZAKLADNE) || defined(LADENIE_PODROBNE)
  36.     if(suma==sucet)
  37.         printf("Suma je spravna\n");
  38.     else
  39.         printf("Suma je nespravna\n");
  40. #endif
  41.     printf("Suma skontrolovana\n");
  42. #if defined(LADENIE_ZAKLADNE) || defined(LADENIE_PODROBNE)
  43.     printf("Zatvaranie suboru\n");
  44. #endif
  45.     if(fclose(fr)==EOF)
  46.         exit(1);
  47.     else
  48. #ifdef LADENIE_PODROBNE
  49.         printf("Subor zatvoreny\n");
  50. #endif
  51.     return 0;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement