C Primer Plus (第六版) 第八章_编程练习答案

这篇博客提供了C Primer Plus第六版第八章的编程练习答案,包括no1到no8共八个C语言源代码文件,供读者参考和讨论。
摘要由CSDN通过智能技术生成

有不对的欢迎跟我讨论

no1.c

# include <stdio.h>

int main(void)
{
	int ch ;
	long i = 0 ;

	while ((ch = getchar()) != EOF)
		i++ ;

	printf("sum = %ld\n" , i);

	return 0 ;
}

no2.c

# include <stdio.h>

int main(void)
{
	int ch ;
	int i = 0 ;

	while ((ch = getchar()) != EOF)
	{

		if (ch < ' ')
			switch (ch)
			{
				case '\n' :
					printf("\\n");
					break ;
				case '\t' :
					printf("\\t");
					break ;
				default :
					printf("^%c:%d" , ch + 64 , ch);	
					break ;
			}
		else
			printf("%c:%d " , ch , ch);

		if (i++ % 10 == 0)
			putchar('\n') ;
	}

	return 0 ;
}

no3.c

# include <stdio.h>
# include <ctype.h>

int main(void)
{
	int ch ;
	long n_upper , n_lower , n_onther ;

	n_upper = n_lower = n_onther = 0 ;

	while ((ch = getchar()) != EOF)
		if (isupper(ch))
			n_upper++ ;
		else if (islower(ch))
			n_lower++ ;
		else
			n_onther++ ;

	printf("There are %ld upper character and %ld lower charecter.\n", n_upper , n_lower);

	return 0 ;
}

no4.c

/*
 * 通过前一个字符和当前字符判断是否是一个单词有三种情况
 * no		prev		current		result 		action
 * 1		 0		  1		单词开始	         n_char++
 * 2		 1		  1		单词中		 n_char++
 * 3		 1		  0		单词结束	         n_word++
 *
 * 而在只计算字符总数, 和单词总数的情况下情况1和情况2就简化,合并为一条语句,即只判断
 * 当前字符是不是字母即可.
 * 而在当前字符不是字母的情况下,前一个字符只有两种情况:是或不是,如果是表示单词结束,
 * 如果不是,表示还未接收到单词. 当前题目下只需要对是的情况作出动作即可.
 * 所以第二个条件和简化后的第一个条件再次简化,合并为一条 if..else if.. 语句
 */
# include <stdio.h>
# include <ctype.h>

int main(void)
{
	int prev ; 		// 前一个字符
	int ch ;		// 当前字符
	long n_char = 0 ;	// 字符数量
	long n_word = 0 ;	// 单词数量

	while ((ch = getchar()) != EOF)
	{
		if (isalpha(ch))	
			n_char++ ;
		else if (isalpha(prev))
			n_word++ ;
		prev = ch ;
	}
	printf("Total words: %ld , Total characters: %ld , Characters per word:%.2lf",
			n_word , n_char , n_word == 0 ? 0.0 :(double)n_char / (double)n_word);

	return 0 ;
}

no5.c

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值