[C語言] 第一章|C語言入門第一課

超帥的T T發表於2019-01-19

第一章| C語言入門第一課


[摘要]
1.第一個C程式 —— hello world!
2.相關練習

第一部分. hello world

1. 程式碼展示

首先,展示一下這個程式的程式碼。

#include<stdio.h>
int main()
{
	//輸出hello world
	printf("hello world\n");
	return 0;
}

2.程式碼分析

現在,來分析程式。
[第一行] #include <stdio.h>
<stdio.h>為標頭檔案
這一行的意思是把標頭檔案匯入,使得這個程式可以使用這個標頭檔案,以實現某些功能。
[第二行] int mian()
main()函式是主函式
int 是說主函式的返回值型別為整數行。
[第三行] 這是註釋,不會被執行。
C語言中註釋的形式可以為:
(1)//這裡是註釋
這種註釋必須在一行中
(2)/* 這裡是註釋 */
這樣的註釋不必一定在一行中完成

[第四行] printf(“hello world\n”);
printf("…"); 該語句為輸出
如,printf(“abcde”);輸出的就是abcde。
\n 的意思是換行(注:\n要放在printf結構的引號內)。
[第五行] return 0;
返回值為 0,程式結束。
[注] 在該程式碼中,; " 這兩個符號需要為英語版本輸入。

第二部分. 相關練習

1.讀程式
(1.1)

#include<stdio.h>
int main()
{
	printf("I like\nC\n");
	return 0;
}

該程式碼的執行結果為?
(1.2)

#include<stdio.h>
int main()
{
	printf("I like\nC ");
	printf("hello");
	return 0;
}

該程式碼的執行結果為?

2.寫程式
輸出以下語句(結構需一樣)

I want to 
be a 
good 
student

(2.1)使用一次printf結構
(2.2)使用四次printf結構

附錄. 答案

(1.1)

	I like
	C

(1.2)

	I like
	C hello

(2.1)

#include<stdio.h>
int main()
{
	printf("I want to\nbe a\ngood\nstudent\n");
	return 0;
}

(2.2)

#include<stdio.h>
int main()
{
	printf("I want to\n");
	printf("be a\n");
	printf("good\n");
	printf("student\n");
	return 0;
}

相關文章