摘要:
1 #include <stdio.h> 2 3 int main() 4 { 5 char buff[50]; 6 while (true) 7 { 8 scanf("%s", buff); 9 printf("you inputed: %s\n", buff);10 }11 return 0;12 }问题描述:这段程序不停的向用户要求输入一些文字,当用户输入后紧接着就把这些文字显示出来。这个程序是无限循环的,但是这并没有什么关系,因为每一次 scanf() 调用的时候,都会停下来等待用户输入。所以用户可以不慌不忙的... 阅读全文
posted @ 2013-05-09 08:54 凤凰火舞 阅读(280) 评论(0) 推荐(0) 编辑