freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

[教育學]c教學基礎(chǔ)第二章-資料下載頁

2025-01-19 13:20本頁面
  

【正文】 include include void main() { int i,j。 for(i=1。 i10。 i++) { for(j = 1。 j = i。 j ++) coutsetw (4) i*j。 coutendl。 } } couti?*?j?=?setw (2) i*j“ “。 跳轉(zhuǎn)語句 跳轉(zhuǎn)語句是輔助性語句,不單獨使用,一般與選擇語句或循環(huán)語句結(jié)合起來使用,起到控制程序結(jié)構(gòu)的作用。 跳轉(zhuǎn)語句包括 : ?break語句 ?continue語句 ?goto語句 break語句 break; 形式: ?用于 switch語句 ?用于循環(huán)語句 用途: 當在循環(huán)體執(zhí)行過程中遇到 break語句時,終止循環(huán)的執(zhí)行, 中途退出循環(huán), 轉(zhuǎn)去執(zhí)行循環(huán)體后面的語句。 功能: 例 : 判斷輸入的某正整數(shù)是否為素數(shù)。 include void main() { int m。 do{ cout輸入一個正整數(shù) :。 cinm。 }while(m=0)。 //重新輸入 for (int i=2。 im。 i++) { If (m%i==0) break。 } if ( i==m) coutm是一個素數(shù) \n。 else coutm不是一個素數(shù) \n。 } 輸入一個正整數(shù) :431 431是一個素數(shù) 第 1次執(zhí)行程序: 第 2次執(zhí)行程序: 輸入一個正整數(shù) :69 69不是一個素數(shù) 輸入一個正整數(shù) hile(m=0 //重新輸入 if (m%i==0) break。 if ( 是一個素數(shù) \ 不是一個素數(shù) \ } 注意:在多重循環(huán)時, break只是退出本層 循環(huán)。 例: 分析以下 switch語句執(zhí)行后的輸出結(jié)果。 include void main() { int a=1,b=2,c=0,d=0。 switch (a) { case 1: switch(b) { case 1: c++。 break。 case 2: d++。 break。 } case 2: c++。 d++。 break。 } coutc=cendl。 coutd=dendl。 } 程序執(zhí)行結(jié)果 : c=1 d=2 { int ,b=2,c=0,d=0。 { case 1: c++。 case 2: d++。 。 break。 。 coutc=cendl。 c= 0 d= 1 continue語句 continue; 形式: 中斷本次 循環(huán)體的執(zhí)行,立即 執(zhí)行下一次 循環(huán)。 用途: 只用于循環(huán)語句中。 功能: 例題 11: 將 100以內(nèi)能被 3整除的數(shù)輸出,每行輸出 10個數(shù)。 include void main() { int k=0。 for(int i=1。 i100。 i++) { if ( i%3 !=0) continue。 couti 。 if(++k%10==0) coutendl。 //控制每行輸出 10個數(shù) } coutendl。 } include void main() { for(int i=1。 i=9。 i++) coutiendl。 } 1 2 3 4 5 6 7 8 9 include void main() { for(int i=1。 i=9。 i++) { if(i==5)break。 coutiendl。 } } 1 2 3 4 1 2 3 4 6 7 8 9 include void main() { for(int i=1。 i=9。 i++) { if(i==5)continue。 coutiendl。 } } goto語句 goto 標號; 形式: 無條件地轉(zhuǎn)去執(zhí)行標號所指出的語句。 用途: ?goto語句的使用被限制在一個函數(shù)內(nèi)。 注意: ?goto語句的使用會破壞程序的結(jié)構(gòu), 可讀性差。不提倡使用,最好不用。 循環(huán)結(jié)構(gòu) 選擇結(jié)構(gòu) for循環(huán) 當循環(huán) 程序的三種基本結(jié)構(gòu) if結(jié)構(gòu) ifelse語句 ifelse if語句 if語句 switch語句 while循環(huán) 先判斷后循環(huán) dowhile循環(huán) 先循環(huán)后判斷 順序結(jié)構(gòu) 一個選擇語句和一個循環(huán)語句 在語法上仍當作一個語句對待。 ? 本章要求: – 了解三種基本的控制結(jié)構(gòu); – 熟練使用 if、 switch、 while 和 for語句; – 熟練掌握單重循環(huán)和雙重循環(huán); – 熟練掌握 break語句和 continue語句在循環(huán)中的應(yīng)用。 ? 本章難點: ? 1)程序結(jié)構(gòu)的各種形式(嵌套、復合); ? 2)語句的執(zhí)行過程; ? 學習方法: – 大量讀程序,認識各式各樣的語句嵌套,并模仿編程 例:編寫程序,計算并輸出所有的“水仙花數(shù) ”。所謂“水仙花數(shù)”是指一個三位數(shù),其各位數(shù)字的立方和等于該數(shù)本身 。 結(jié)束 求出個、十、百位,判斷是否水仙花數(shù) 開始 輸出水仙花數(shù) 定義變量 判斷循環(huán)結(jié)束 No Yes include void main() { int num,a,b,c。 for(num=100。num1000。num++) { a=num/100。 b=(numa*100)/10。 c=numa*100b*10。 if(a*a*a+b*b*b+c*c*c==num) coutnumendl。 } } 輸出 1100之間的自然數(shù)中各位數(shù)字乘積大于各位數(shù)字之和的所有。 include void main() { int k,s,m。 for(int n=11。n=100。n++) { k=1。 s=0。 m=n。 while(______) { k*=m%10。 s+=m%10。 m=m/10。 } if(________) coutn 。 } coutendl。 } m != 0 k s 閱讀程序,寫出程序運行結(jié)果 include void main() { int x(3),y(6),z(0)。 while(x++!=(y=y1)) { z++。 if(yx) break。 } coutx y zendl。 } 5 4 1 用 if語句編寫程序,計算下式: y= { n+1 n2 n0 n0 n=0 0 include void main() { double n, res。 cout “請輸入 n值: 。 cin n。 if(n ) res = n + 1。 else if(n == ) res = 。 else res = n * n。 cout res endl。 } 用 if語句編寫程序,計算下式: 繪制下式函數(shù)曲線圖(區(qū)間 n ? [5, 5]) y= { n+1 n2 n0 n0 n=0 0 include void main() { double n, res。 cout 請輸入 n值 ( ): 。 cin n。 while(n != ) { if(n ) res = n + 1。 else res = n * n。 cout res endl。 cout 請輸入 n值 ( ): 。 cin n。 } } include void main() { double n, res。 double dstep = / 100。 for(int i = 0。 i 100。 i ++) { n = 5 + i * dstep。 if(n ) res = n + 1。 else res = n * n。 cout n 39。\t39。 res endl。 } } 用 if語句編寫程序,計算下式: 繪制下式函數(shù)曲線圖(區(qū)間 n ? [5, 5]) y= { n+1 n2 n0 n0 n=0 0 include void main() { double n, res。 ofstream fout()。 double dstep = / 100。 for(int i = 0。 i 100。 i ++) { n = 5 + i * dstep。 if(n ) res = n + 1。 else res = n * n。 fout n 39。\t39。 res endl。 } ()。 }
點擊復制文檔內(nèi)容
教學課件相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1