示例:结构数组

作者:追风剑情 发布于:2020-4-17 9:46 分类:C

示例:让用户输入看过的电影

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. //提供CHAR_BIT的定义,CHAR_BIT表示每字节的位数
  6. #include <limits.h>
  7. //C99定义了bool、true、false
  8. #include <stdbool.h>
  9.  
  10. #define TSIZE 45 //储存片名的数组大小
  11. #define FMAX 5 //影片的最大数量
  12.  
  13. struct film {
  14. char title[TSIZE]; //影片名称
  15. int rating; //评级(0~10)
  16. };
  17.  
  18. char* s_gets(char* st, int n);
  19.  
  20. int main(int argc, char* argv[])
  21. {
  22. struct film movies[FMAX];
  23. int i = 0;
  24. int j;
  25.  
  26. puts("Enter first movie title:");
  27. while (i < FMAX && s_gets(movies[i].title, TSIZE) != NULL &&
  28. movies[i].title[0] != '\0')
  29. {
  30. puts("Enter your rating <0-10>:");
  31. scanf("%d", &movies[i++].rating);
  32. while (getchar() != '\n')
  33. continue;
  34. puts("Enter next movie title (empty line to stop):");
  35. }
  36. if (i == 0)
  37. printf("No data entered.");
  38. else
  39. printf("Here is the movie list:\n");
  40.  
  41. for (j = 0; j < i; j++)
  42. printf("Movie: %s Rating: %d\n", movies[j].title, movies[j].rating);
  43. printf("Bye!\n");
  44.  
  45. system("pause");
  46. return 0;
  47. }
  48.  
  49. // 自己实现读取函数
  50. char* s_gets(char* st, int n)
  51. {
  52. char* ret_val;
  53. int i = 0;
  54. ret_val = fgets(st, n, stdin);
  55. if (ret_val) //即,ret_val != NULL
  56. {
  57. while (st[i] != '\n' && st[i] != '\0')
  58. i++;
  59. if (st[i] == '\n')
  60. st[i] = '\0';
  61. else
  62. while (getchar() != '\n')
  63. continue;
  64. }
  65. return ret_val;
  66. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号