首页 > 其他 > 详细

从标准输入读取几行输入。每行输入都要打印到标准输出上,前面加上行号,使能够处理的输入行的长度没有限制

时间:2015-10-15 06:28:41      阅读:248      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include<stdlib.h>
int main ()
{
	char ch;
	int start=1;
	int n=1;
	while(1)
	{
		printf("input your line\n")	;
		do
		{
			scanf("%c",&ch);
			if(start==1)
			{
				start=0;
				printf("%d.",n);	
			}
			printf("%c",ch);	
		}while(ch!=‘\n‘);
		start=1;
			n++;
	}
		
}


从标准输入读取几行输入。每行输入都要打印到标准输出上,前面加上行号,使能够处理的输入行的长度没有限制

原文:http://10740329.blog.51cto.com/10730329/1703000

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!