Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. if(toiminto == 1){
  3. printf("Anna etunimi: ");
  4. scanf("%s", &etunimi[0]);
  5. printf("Anna sukunimi: ");
  6. scanf("%s", &sukunimi[0]);
  7. printf("Anna ikä: ");
  8. scanf("%d", &ika);
  9. printf("Anna paino: ");
  10. scanf("%f", &paino);
  11. henkilo_tiedot = fopen("Data.txt", "a");
  12. fprintf(henkilo_tiedot, "%s %s %d %.1f\n", etunimi, sukunimi, ika, paino);
  13. fclose(henkilo_tiedot);
  14. }
  15. if(toiminto == 2){
  16. henkilo_tiedot = fopen("Data.txt", "r");
  17. while(feof(henkilo_tiedot) == 0){
  18. fscanf(henkilo_tiedot, "%s %s %d %f\n", &etunimi[0], &sukunimi[0], &ika, &paino);
  19. printf("%s %s, %d vuotta ja %.1f kg.\n", etunimi, sukunimi, ika, paino);
  20. }
  21. fclose(henkilo_tiedot);
  22. }
  23. }
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment