第十五周練兵區 程式設計題 不計入總分

2021-09-10 18:12:20 字數 2049 閱讀 9093

有一堆零件(100–200之間),如果分成4個零件一組的若干組,則多2個零件,如果分成7個零件一組的若干組,則多3個零件,如果分成9個零件一組的若干組,則多5個零件,程式設計計算這堆零件的總數。

輸入格式: 無

輸出格式: 「%d\n」

#include int main()

} return 0;

}

樓梯有10階台階,上樓可以一步上1階,也可以1步上2階,程式設計計算10階台階總共有多少走法.

輸入格式: 無

輸出格式: 「result=%d」

#include int y(int n);

int main()

int y(int n)

程式執行結果如下:

input 10 numbers:

3 12 7 65 8 4 17 25 36 50↙

output: 3,7,17,25,65,4,8,12,36,50

輸入提示資訊:「input 10 numbers:\n」

輸入格式: 「%d」

輸出格式:

輸出資料提示資訊:"output: " (注:冒號「:」的後面有乙個空格)

前9個資料的輸出格式:"%d,"

最後乙個資料的輸出格式:"%d\n"

#include int main()

printf("output: ");

for(i=0;i<10;i++)

}} r=0;

for(i=0;i<10;i++) }

for(i=0;i<10;i++) }

for(i=0;i<10;i++)

return 0;

}

從3個紅球,5個白球,6個黑球中任意取出8個作為一組進行輸出。在每組中可以沒有黑球,但必須要有紅球和白球。程式設計實現以上功能。用函式返回其組合數,在函式中列印每組的組合

函式原型為: int fun (void);

程式執行結果示例:

the result:

red: 1 white: 1 black: 6

red: 1 white: 2 black: 5

red: 1 white: 3 black: 4

red: 1 white: 4 black: 3

red: 1 white: 5 black: 2

red: 2 white: 1 black: 5

red: 2 white: 2 black: 4

red: 2 white: 3 black: 3

red: 2 white: 4 black: 2

red: 2 white: 5 black: 1

red: 3 white: 1 black: 4

red: 3 white: 2 black: 3

red: 3 white: 3 black: 2

red: 3 white: 4 black: 1

red: 3 white: 5 black: 0

sum= 15

輸入格式: 無

輸出格式:

輸出格式:「red:%4d white:%4d black:%4d\n」

輸出組合數格式:「sum=%4d\n」

#include int fun (void);

int main()

int fun (void)

}} }

return count;

}

編寫程式,找出1~99之間的全部同構數。若乙個數出現在它的平方數的右邊則稱它是同構數。例如:若52=25,則5是乙個同構數。再如,若252=625,則25是乙個同構數。

輸入格式: 無

輸出格式: 「m=%3d\t\tm*m=%6d\n」

#include int main()

else if(i<100)

else if(i<1000)

else ;

} return 0;

}

ayit 第十五周訓練f題

give a number n,find the minimum x x 0 that satisfies 2 x mod n 1.input one positive integer on each line,the value of n.output if the minimum x exist...

ayit第十五周訓練題題i題

you are given two integers nandk,your task is to find the most significant three digits,and least significant three digits ofnk.input input starts wit...

第十五周專案 范型程式設計

all right reserved.檔名稱 test.cpp 完成日期 2016年6月21日 版本號 v1.0 問題描述 閱讀程式 程式輸入 程式輸出 知識點總結 vector不提供push front 成員方法,因為效率太差,如果有太多從前面插入的需求,就不應該使用vector,而用list 關...