c入門系列:第一章 基本型別
c入門系列:第二章 字串
c入門系列:第三章 函式
c入門系列:第四章 陣列和指標
c入門系列:第五章 資料儲存類別和記憶體管理
c入門系列:第六章 檔案輸入/輸出
c入門系列:第七章 結構和其他資料形式
c入門系列:第八章 c預處理器和c庫
#include
// void pound(void); // 函式原型宣告,沒有形參
// void pound(int);
void
pound
(int n)
;// 函式原型宣告
intmain
(void
)void
pound
(int n)
printf
("\n");
}
hotel.h
#define quit 5
#define hotel1 180.00
#define hotel2 225.00
#define hotel3 255.00
#define hotel4 355.00
#define discount 0.95
#define start "*****************"
// 顯示選擇列表
intmenu
(void);
// 返回預定天數
intgetnights
(void);
// 根據費率、入住天數計算費用
void
showprice
(double rate,
int nights)
;usehotel.c
#include
#include
"hotel.h"
intmain
(void
) nights =
getnights()
;showprice
(hotel_rate, nights);}
return0;
}int
menu
(void
)return code;
}int
getnights
(void
)return nights;
}void
showprice
(double rate,
int nights)
}
第三章 函式
函式是模組劃分的基本單位,是對外處理的一種抽象 c和c 的子程式體現為函式 呼叫其他函式的被稱為主函式 被其他行數呼叫的稱為被調函式 函式的語法形式 型別說明符 函式名 含型別說明的形式參數列 語句序列 形式引數 形式參數列 簡稱形參 表的內容如下 type1 name1,type2 name2,t...
第三章 tensorflow入門
tensoflow即tensor flow,張量 流動,張量即陣列。tensorboard視覺化工具。tensorflow三個基本概念 計算圖 tf.graph 張量 tf.tensor 會話 tf.session 計算圖是計算模型,每個節點是乙個運算,邊表示資料傳遞關係,資料是張量。tensofl...
C 實踐 第三章 函式
問題描述 編寫具有如下原型的函式 bool f long x 其功能為 若整數 x 僅由偶數字 0 2 4 6 8 組成時 如 x 26480 函式返回 true,否則返回 false 如當 x 22034 時 並編制主函式對它進行呼叫。輸入形式 只能是乙個整數數字,中間不能有空格等其他字元 輸出形...