程式設計練習解析學習筆記

2021-10-05 11:02:06 字數 1022 閱讀 6201

1.求符合給定條件的整數集

給定不超過6的正整數a,考慮從a開始的連續4個整數,請輸出所有由它們組成的無重複數字的三位數。

#include int main()

else

}k++;

}j++;

}i++;

}return 0;

}

2.水仙花數

水仙花數是指乙個n位正整數(n>=3),它的每個位數上的數字的n次冪之和等於它本身,例如:153=1x1x1+5x5x5+3x3x3,本題要求編寫程式,計算所有n位水仙花數。

#include int main()

i++;

}return 0;

}

3.九九乘法表

本題要求對任意的給定的1位正整數n,輸出從1x1到nxn的部分口訣表

#include int main()

else

j++;

}printf("\n");

i++;

}return 0;

}

4.統計素數求和

本題要求統計給定整數m和n區間內素數的個數並對它們求和

#include int main()

else if ( inp>number ) else if (inp6.求序列前n項求和

本題要求編寫程式,計算序列2/1+3/2+5/3+8/5+…的前n項和,注意該序列從第二項起,每一項的分子是前一項分子與分母的和,分母是前一項的分子。

#include int main()

printf("%f %f\n",dividend,divisor);

printf("%.2f\n",sum);

return 0;

}

Unix學習筆記 Unix程式設計例項練習

下面我們來看一下例子 對於這個例子 我有幾點要說明 1.如何看待這個例子?2.弄懂每一條語句的作用?3.program source include include include include intmain int argc,char argv if cpid 0 else if wifexi...

程式設計菜鳥 Python學習筆記 函式定義練習

借用之前迴圈控制練習的 將部分功能定義成函式,嘗試簡化或明細主程式邏輯 熟悉定義函式以及呼叫的方法 把使用者名稱校驗和密碼校驗2個功能定義成函式,分別在主程式中做呼叫 嘗試是否能夠簡化邏輯 print 請輸入使用者名稱 run true while run print 使用者名稱 end usern...

C 學習筆記二十 第5章程式設計練習

1.include int main cout the sum of numbers between and is 0 2.include include using namespace std const int arsize 16 int main 3.include include int m...