当前位置:   article > 正文

【c语言篇】每日一题-pta-实验11-2-7 统计专业人数

【c语言篇】每日一题-pta-实验11-2-7 统计专业人数

题目如下:

裁判测试程序样例:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. struct ListNode {
  5. char code[8];
  6. struct ListNode *next;
  7. };
  8. struct ListNode *createlist(); /*裁判实现,细节不表*/
  9. int countcs( struct ListNode *head );
  10. int main()
  11. {
  12. struct ListNode *head;
  13. head = createlist();
  14. printf("%d\n", countcs(head));
  15. return 0;
  16. }
  17. /* 你的代码将被嵌在这里 */

 

 代码如下:

  1. int countcs( struct ListNode *head )
  2. {
  3. int result = 0;
  4. while(head)
  5. {
  6. if(head->code[1] == '0' && head->code[2] == '2')
  7. //从一串数字中获得具体某个位置的数字,使用head->code[索引]
  8. {
  9. result++;
  10. }
  11. head = head->next;
  12. }
  13. return result;
  14. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/292961
推荐阅读
相关标签
  

闽ICP备14008679号