Kuroki-Tomoko

我什麽都不知道,我只知道吃飯~

博客园 首页 新随笔 联系 订阅 管理

2022年12月26日 #

摘要: /*while2.c程序->注意分號的位置*/ 1 #include<stdio.h> 2 int main(void) 3 { 4 int n=0; 5 6 while(n++<3); 7 printf("n is %d\n",n); 8 printf("That's all this progr 阅读全文
posted @ 2022-12-26 16:04 KurokiTomoko 阅读(22) 评论(0) 推荐(0) 编辑

摘要: 運算符 含義 < 小於 <= 小於或等於 == 等於 >= 大於或等於 > 大於 != 不等於 運算符(優先級從高到低) 結合律 () 從左往右 - + ++ -- sizeof 從右往左 * / % 從左往右 + - 從左往右 < > <= >= 從左往右 == != 從左往右 = 從右往左 阅读全文
posted @ 2022-12-26 15:49 KurokiTomoko 阅读(25) 评论(0) 推荐(0) 编辑

摘要: while是入口條件循環 在進入循環體時必須要有獲取輸入數據并判斷的并檢查輸入數據的值,所以在while之前放一個scanf函數,讓循環繼續執行。 如果想讓循環繼續進行,那麽還需要在循環内設置一個讀取所輸入數據的語句,好讓其進入下一次循環,這樣程序才會獲取到下一個status的值。 所以在末尾還要有 阅读全文
posted @ 2022-12-26 15:34 KurokiTomoko 阅读(29) 评论(0) 推荐(0) 编辑

摘要: /*C Primer Plus (5.10) 9*/ 1 #include<stdio.h> 2 #define G 103 3 int main() 4 { 5 char ch=96; 6 7 while(ch++<G) 8 { 9 printf("%5c",ch); 10 } 11 printf 阅读全文
posted @ 2022-12-26 01:20 KurokiTomoko 阅读(28) 评论(0) 推荐(0) 编辑

2022年12月21日 #

摘要: 看這兩個小段代碼: /*code1.*/ index=0; while(index<10) sam = 10*index+2; printf("sam=%d\n",sam); /*code2.*/ index=0; while(index<10) { sam = 10*index+2; printf 阅读全文
posted @ 2022-12-21 15:01 KurokiTomoko 阅读(21) 评论(0) 推荐(0) 编辑

摘要: /*C Primer Plus (4.7) 5*/ 1 include<stdio.h> 2 #define BOOK "War and Peace" 3 int main(void) 4 { 5 float cost=12.99; 6 float percent=80.0; 7 8 printf( 阅读全文
posted @ 2022-12-21 14:49 KurokiTomoko 阅读(52) 评论(0) 推荐(0) 编辑

摘要: 要使用scanf函數進行輸入: 1.如果用scanf()要輸入讀取基本變量的值,需要加&。 2.如果用scanf()讀取的是把字符串讀入字符數組中,則不需要加& 1 #include<stdio.h> 2 int main() 3 { 4 int age;/*變量*/ 5 float assets; 阅读全文
posted @ 2022-12-21 14:37 KurokiTomoko 阅读(17) 评论(0) 推荐(0) 编辑

摘要: 如果你不想預先設置字段的寬度,想通過程序來進行設定,則可以可以使用“*”來進行修飾字段的寬度,前提是在程序中要包含“*”和參數對應的值(比如%*d,那麽參數應該包含*和%d的值)。不僅如此,*還可以在程序中來去確定浮點型數字的精度和字段寬度。 precision 精度 width 寬度 printf 阅读全文
posted @ 2022-12-21 14:35 KurokiTomoko 阅读(20) 评论(0) 推荐(0) 编辑

摘要: 循環簡介:這個程序是一個打印一個鞋碼為9并把他轉化爲英寸的程序,要發揮出計算機的優勢可以改進成一個循環來進行打印多個值 1 /*shoes1.c把鞋碼轉換成英寸*/ 2 #include<stdio.h> 3 #define ADJUST 7.31 4 int main() 5 { 6 const 阅读全文
posted @ 2022-12-21 14:24 KurokiTomoko 阅读(24) 评论(0) 推荐(0) 编辑