码迷,mamicode.com
首页 > 其他好文 > 详细

去掉双斜杠注释

时间:2014-11-24 10:14:01      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   io   ar   color   os   sp   for   

Description

将C程序代码中的双斜杠注释去掉。

Input

输入数据中含有一些符合C++语法的代码行。需要说明的是,为了方便编程,规定双斜杠注释内容不含有双引号,源程序中没空行。

Output

输出不含有双斜杠注释的C++代码,除了注释代码之外,原语句行格式不变。

Sample Input

//======================
// simplest program
//======================
#include
using namespace std;
//----------------------
int main(){
  cout<<”hello world!\n”;
}//---------------------

Sample Output

#include
using namespace std;
int main(){
  cout<<”hello world!\n”;
}

HINT


#include<stdio.h>
#include<string.h>
int main()
{
	char a[1000];
	int t,i;
	while(gets(a))
	{
		t=strlen(a);
		for(i=0;i<t;i++)
		{
			if(a[0]=='/'&&a[1]=='/')//若开始为//则无输出若开始全为空格后面为//则输出换行
				break;
			else
			{
				for(i=0;i<t;i++)
				{
					if(a[i]=='/'&&a[i+1]=='/')
						break;
			    	else
						printf("%c",a[i]);
				}
				printf("\n");
				break;
			}
		}
	}
	return 0;
}

去掉双斜杠注释

标签:des   style   http   io   ar   color   os   sp   for   

原文地址:http://blog.csdn.net/phytn/article/details/41415477

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!