灰色世界 发表于 2019-11-15 16:51:18

求助 switch语句的问题

照着小甲鱼打的求输入字符串字符个数的代码 但无论如何返回的都是1个字符 是怎么回事?
这是代码:#include <stdio.h>

int main()
{
      int count = 0;
      
      printf("请输入任意一行英文代码:\n");
         
      while (getchar() != '\n');
      {
                count = count + 1;
      }
               
      printf("输入了%d个字符\n", count);
      
      return 0;
}

灰色世界 发表于 2019-11-15 16:52:09

说错了 while语句{:5_103:}

jackz007 发表于 2019-11-15 17:09:22

      while (getchar() != '\n');

      去掉语句末尾红色的分号
页: [1]
查看完整版本: 求助 switch语句的问题