學習C語言的第一天(日常)

2021-10-12 07:04:14 字數 822 閱讀 5859

c語言常用函式(12.16):

:1.strlen(計算字串長度)[直到空結束字元,但不包括空結束字元。【int strlen(const char *str)】]

2.strcpy(字串複製)【char *strcpy(char *dest, const char *src)】

3.strcat(把後面的字串連線到前面的字串後面)【char *strcat(char *dest, const char *src)】

4.strcmp(字串比較,前面》後面返回正數,前面《後面返回負數,前面等於後面返回)【int strcmp(const char *str1, const char *str2)】

1.printf(輸出)

2.scanf(輸入)

3.gets(用來向標準輸出裝置(螢幕)寫字串並換行)【puts()函式的作用與語printf("%s\n", s)相同】

4.puts(用來從標準輸入裝置(鍵盤)讀取字串直到回車結束, 但回車符不屬於這個字串)

a.puts與scanf的區別:

5.putchar(輸出乙個字元)

getchar(接收輸入的乙個字元)

1.sqrt(x):計算x的平方根,x應大於0)

2.fabs(x):計算x的絕對值)

3.pow(x,y):計算x的y次方)

1.system ("…");【pause=暫停,calc=計算器,cmd=命令指示符,notepad=記事本】

1.rand()、srand()【如:int i;srand((unsigned)time(null)); i = rand() % 101;生成1~100中的隨機數 】

日常學習python第一天

變數定義 什麼是變數?在這裡插入 import keyword 系統的關鍵字 print keyword.kwlist 判斷是否是關鍵字 print keyword.iskeyword aaa print keyword.iskeyword if 變數定義及賦值 單一賦值 a 10 統一賦值 b c...

第一天C語言

include int main 建立工程 檔案 新建 專案 選visual c 空專案 檢視 解決方案資源管理器 右鍵 原始檔 新增 新建項 shift alt enter 編輯區最大化 暫停螢幕 include include 暫停 標頭檔案 int main 電腦組成 馮諾依曼體系結構 處理器...

C語言第一天

簡單的c語言程式 1 include2 intmain 3 執行結果 this is a first c program.this is second line 第一行 include 標頭檔案,即下方的 會呼叫的函式 方法類 庫 由這個函式庫提供方法的支援 第二行 int main 主函式,全部程...