C語言程式設計-現代方法 第二版 第6.1小節 顯示平方表

我要的暱稱被註冊了發表於2020-12-12

第6.1小節 顯示平方表

//This is a comment
//Author:King
//Time:2020/12/5
//Reference:C Programming:A Modern Approach,Second Edition

/***************************************************************
6.1小節程式碼 顯示平方表 
****************************************************************/

#include <stdio.h>

int main(void)
{
	int i,n;
	
	printf("This program prints a table of squares.\n");
	printf("Enter number of entries in table: ");
	
	scanf("%d",&n);
	
	i = 1;
	while(i <= n)
	{
		printf("%10d%10d\n",i,i*i);
		i++;		
	}
	
	system("pause");	//加入該函式後可以使得生產的exe單獨執行,不會發生閃退。也可以加入其它函式使得main函式無法返回即可。如while(1)、getchar() 等 
	return 0;
	
}

相關文章