C primer plus 第六版 第六章 第七題 程式設計練習答案

Aeron-A發表於2018-10-19

Github地址:φ(>ω<*) 這裡這裡。

#include<stdio.h>
#include<string.h>
int main(void)
{
	int i = 0;  // Create for loop.
	int j = 0;  // Save the last subscript value.
	char n = '\n';
	char word[50] = {};

	printf("Please input one word:");
	scanf("%s", word);
	j = strlen(word);
	putchar(n);

	printf("Turn the word upside down like this :");

	for( i = 0; j >= i ; j-- )
	{
		printf("%c", word[j]);
	}
	putchar(n);

	getchar();
	getchar();
	return 0;
}

 

相關文章