结构数组

作者:追风剑情 发布于:2020-1-15 14:17 分类:C

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. char* s_gets(char *st, int n);
  6. #define MAXTITL 41 /* 书名的最大长度 + 1 */
  7. #define MAXAUTL 31 /* 作者姓名的最大长度 + 1 */
  8. #define MAXBKS 100 /* 书籍的最大数量 */
  9.  
  10. /* 声明结构(模板) */
  11. struct book {
  12. char title[MAXTITL];
  13. char author[MAXAUTL];
  14. float value;
  15. };
  16.  
  17. int main(int argc, char* argv[])
  18. {
  19. /*
  20. 分配的栈内存太多,可能会报栈溢出错误。可设置编译器选项增加栈大小。
  21. */
  22. struct book library[MAXBKS]; // 声明结构体数组
  23. int count = 0;
  24. int index;
  25. printf("Please enter the book title.\n");
  26. printf("Press [enter] at the start of a line to stop.\n");
  27. while (count < MAXBKS && s_gets(library[count].title, MAXTITL) != NULL
  28. && library[count].title[0] != '\0')
  29. {
  30. printf("Now enter the author.\n");
  31. s_gets(library[count].author, MAXAUTL);
  32. printf("Now enter the value.\n");
  33. //scanf()函数遇到空格或换行符就会结束读取
  34. scanf("%f", &library[count++].value);
  35. while (getchar() != '\n')
  36. continue; // 清理输入行
  37. if (count < MAXBKS)
  38. printf("Enter the next title.\n");
  39. }
  40.  
  41. if (count > 0)
  42. {
  43. printf("Here is the list of your books:\n");
  44. for (index = 0; index < count; index++)
  45. {
  46. printf("%s by %s: $%.2f\n", library[index].title,
  47. library[index].author, library[index].value);
  48. }
  49. }
  50. else
  51. {
  52. printf("No books? Too bad.\n");
  53. }
  54.  
  55. system("pause");
  56. return 0;
  57. }
  58.  
  59. // 自己实现读取函数
  60. char* s_gets(char* st, int n)
  61. {
  62. char* ret_val;
  63. int i = 0;
  64. ret_val = fgets(st, n, stdin);
  65. if (ret_val) //即,ret_val != NULL
  66. {
  67. while (st[i] != '\n' && st[i] != '\0')
  68. i++;
  69. if (st[i] == '\n')
  70. st[i] = '\0';
  71. else
  72. while (getchar() != '\n')
  73. continue;
  74. }
  75. return ret_val;
  76. }

运行测试

111.png

Borland C和浮点数
如果程序不使用浮点数,旧式的Borland C编译器会尝试使用小版本的scanf()来压缩程序,然而,如果在一个结构数组中只有一个浮点值,那么这种编译器(DOS的Borland C/C++ 3.1之前的版本,不是Borland C/C++ 4.0)就无法发现它存在。结果,编译器会生成如下消息:
scanf :floating point formats not linked
Abnormal program termination
一种解决方案是,在程序中添加下面的代码:
#include
double dummy = sin(0.0);
这段代码强制编译器载入浮点版本的scanf();

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号