iT邦幫忙

鐵人檔案

2023 iThome 鐵人賽
回列表
自我挑戰組

C語言精讀研習 系列

在校因旁聽關係,C語言的基礎架構十分薄弱,在遇到C++與C#等需要快速架構流程,規劃程式碼時,常會不知所措,因此給自己C語言從基礎到末了一個進度,可以努力精進。

參賽天數 24 天 | 共 47 篇文章 | 1 人訂閱 訂閱系列文 RSS系列文

使用修飾字來宣告整數型別

完整程式碼Ch02_04_印出各種加上修飾詞型別的長度 #include <stdio.h> int main(void){ printf(&...

2023-12-26 ‧ 由 以馬內利 分享

變數名稱命名原則

完整程式碼Ch02_05_取變數名稱 #include <stdio.h> int main(void){ int myage=10; //宣...

2023-12-27 ‧ 由 以馬內利 分享

宣告變數的位置

完整程式碼Ch02_06_宣告變數 #include <stdio.h> int main(void){ //變數宣告的位置,一定要在函數大括...

2023-12-28 ‧ 由 以馬內利 分享

宣告變數並給予其初始值

完整程式碼Ch02_08_螢幕顯示飲料售價 #include <stdio.h> int main(void){ int coffee = 8...

2024-01-01 ‧ 由 以馬內利 分享

在程式中段指定變數值

完整程式碼 #include <stdio.h> int main(void){ int coffee = 80; //宣告變數並給初始值...

2024-01-02 ‧ 由 以馬內利 分享

整數、浮點數互相轉換

完整程式碼 #include <stdio.h> int main(void){ int intnum1 = 7; //宣告整數變數,給予初始...

2024-01-03 ‧ 由 以馬內利 分享

ASCII碼:數字和字元間轉換

完整程式碼 #include <stdio.h> int main(void){ char i = 'A'; //宣告字元變數 i char...

2024-01-04 ‧ 由 以馬內利 分享

使用temp達成變數互換

完整程式碼 #include <stdio.h> int main(void){ int a=10, b=20; int temp;...

2024-01-05 ‧ 由 以馬內利 分享

while迴圈應用與break脫離迴圈

設計一個console結果如下的程式: 需使用while迴圈列出以下結果 且使用break指令脫離迴圈 數值:2為偶數 數值:4為偶數 數值:6為偶數 數值...

2024-01-07 ‧ 由 以馬內利 分享

BMI計算

C語言完整程式碼 #include <stdio.h> int main() { float height, weight, BMI;...

2024-01-10 ‧ 由 以馬內利 分享