c程序设计语言(第二版.新版)习题1_23

  • 编写一个删除c语言程序中所有的注释语句.要正确处理带引号的字符串与字符常量
    在c语言中,注释不允许嵌套 */
#include<stdio.h>

#define MAXSIZE 1000000	//允许存储的程序最大长度

int remove_comments(char str[]);
int practice1_23(void)
{
	char str[MAXSIZE] = { 0 };
	int c, i = 0;

	freopen("C:\\\\Users\\wwwzh\\Desktop\\data.in", "r", stdin);
	freopen("C:\\\\Users\\wwwzh\\Desktop\\data.out", "w", stdout);

	while ((c = getchar()) != EOF && i < MAXSIZE)
	{
		str[i] = c;
		i++;
	}
	if (i == MAXSIZE)
	{
		printf("error\n");
		return 0;
	}
	remove_comments(str);
	printf("%s", str);
	return 0;
}

/*  把first到end之间的字符删除.例如str=abcdef,first=1,end=4,操作后str=aef  */
static void function(char str[], int first, int end)
{
	while (str[end] != '\0')
	{
		str[first] = str[end];
		first++;
		end++;
	}
	str[first] = '\0';
}

/*  删除注释  */
int remove_comments(char str[])
{
	int i = 0;
	while (str[i] != '\0')
	{
		int j = i + 1;
		if (str[i] == '\"' && str[i - 1] != '\\')//字符串里的东西全部忽略
		{
			while (str[j] != '\"')//字符串结束位置
			{
				if (str[j] == '\\' && str[j + 1] == '\"')
					j++;
				j++;
			}
			i = j;
		}
		else if (str[i] == '/')
		{			
			if (str[j] == '/')	//单行注释处理开始
			{
				while (str[j] != '\n')
				{
					if (str[j] == '\\' && str[j + 1] == '\n')
						j++;
					j++;
				}
				function(str, i, j);

				continue;		//单行注释处理完毕
			}
			else if (str[j] == '*')	//多行注释处理开始
			{
				j += 2;
				while (!(str[j - 1] == '*' && str[j] == '/'))
				{
					j++;
				}
				function(str, i, j + 1);
				continue;			//多行注释处理完毕
			}
		}
		i++;
	}
	return 0;
}

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值