1.1.c語言搭建及system函式
1.2.c語言的基礎框架解釋
#include
#include
intmain()
//main是程式的入口,作業系統啟動乙個程式,先找整個exe檔案中main的位置
//main是函式名稱,搭配()才算函式
1.3.c程式變數
#include
#include
intmain()
/*知識點
1.變數型別 變數名 變數值
int a = 10 ;
整數型 整數(初值)
2.定義乙個變數,變數必須先宣告再使用;
3.佔位符:%d */
1.4.c程式的輸入輸出
#include
#include
intmain()
1.5.新手變成沒有思路怎麼搞
「用中文程式設計(寫出步驟(演算法))」
#include
#include
intmain()
1.6.選擇語句之if&else
#include
#include
intmain()
else
return
0;
總結:if(條件) else
1.7.選擇語句的巢狀
這裡討論了乙個男女相親的問題
#include
#include
intmain()
else
else}}
//既然沒有100萬
else
else
}return0;
}
1.8.選擇語句之成績等級判斷
#include
#include
intmain()
else
if(score>=
75&& score<90)
else
if(score>=
60&& score<75)
else
if(score<60)
return0;
}
1.9.多分支選擇:switch&case&break&default
對比多個else if,switch在面對多個選擇時就顯得很可觀。
總結:switch
(物件)
#include
#include
intmain()
return0;
}
1.10.迴圈控制語句之while
總結:whlie(條件)
#include
#include
intmain()
中內容 cishu=cishu+1;
//1.提醒使用者輸入
printf
("請輸入第%d次成績:"
,cishu)
;//2.獲取使用者輸入
scanf
("%d"
,&score)
;//3.判斷
if(score>=90)
else
if(score>=
75&& score<90)
else
if(score>=
60&& score<75)
else
if(score<60)
if(cishu==50)
}return0;
}
1.11.迴圈控制語句之for
總結:for(初始條件;約束條件;變化條件) //強調分號;滿足約束條件進入迴圈;與while相比無需break即可跳出迴圈。
如:for(cishu=0;cishu<=10;cishu++)
#include
#include
intmain()
中內容//1.提醒使用者輸入
printf
("請輸入第%d次成績:"
,cishu)
;//2.獲取使用者輸入
scanf
("%d"
,&score)
;//3.判斷
if(score>=90)
else
if(score>=
75&& score<90)
else
if(score>=
60&& score<75)
else
if(score<60)
if(cishu==50)
}return0;
}
1.12.do…while的補充
總結:先do後while
#include
#include
intmain()
}while(1
);//先do後while
return0;
}
C語言入門基礎題(一)
include intmain if x 1 x 10 if x 10 return0 include intmain include include intmain a sqrt a printf 這個數的平方根為 d n a return0 用if語句寫的 include intmain if ...
C語言入門基礎
c語言的字符集包括 1 大小寫英文本母 2 數字 3 運算子 4 括號 5 標點符號 6 特殊符號 7 空白符 空格符 換行符 製表符 變數 程式執行過程中其值可以改變的量 變數有兩個要素 變數名與變數值 變數名 用識別符號命名,大小寫敏感,不能使用關鍵字 命名原則 見名知意 name xm 姓名 ...
c語言入門基礎
c語言的結構 1 hello world 簡單來說,乙個c程式就是由若干標頭檔案和函式組成。include 包含標頭檔案 主函式 int main printf hello world return 0 include 就是一條預處理命令,它的作用是通知c語言編譯系統在對c程式進行正式編譯之前需做一...