使用getchar()函数读取用户输入

#include <stdio.h>

int main( void )
{
   int ch;

   while ((ch = getchar()) != '/n')
        putchar(ch);

   return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266640.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论