C语言题目及答案

2019-01-18 22:24

目录

1.Climb the Taishan Mountain(II) 2.Peach 3.逆序输出数列 4.逆序数 5.计算高度 6.分解质因数 7.输出数字

8.Problem B:数字之和 9.换零钱 10.素数求和 11.求阶乘和

11.Problem F:求一批正整数中的偶数和 12.统计各种字符个数

13.求最大公约数 14.求最大公约数

15.零起点学算法101——统计字母数字等个数

16.网站泄密 17.老外买瓷砖 18.堆瓷砖 19.新年大酬宾 20.定制瓷砖 21.句子比较大小

22.鹦鹉学舌3——C语言初学者百题大战之十三

23.鹦鹉学舌2——C语言初学者百题大战之十二 24.百鸡问题

25.零起点学算法89——程序设计竞赛 26.零起点学算法89——程序设计竞赛 27.Problem A:计算数列和 28.找钱问题 29.Median 30.素月

31.输入任意N个数,求和32.多项式求和 33.人口问题 34.数字菱形

Climb the Taishan Mountain(II)

Time Limit:1000MS Memory Limit:65536K

Total Submit:753 Accepted:495

Description

Labor day is coming.Since the holiday is long,Many students are planning to have a tour. The Taishan Mountain is very beautiful, so WangPeng and his classmates want to climb the Taishan Mountain. Mountaineering sports is WangPeng's avocation, so he is very excited. Suddenly, a very amusing idea comes to him. The Taishan Mountain has many stairs, and he can climb the mountain one step by 2 stairs or by 1 stairs. How many ways does he have to climb the mountain? For example, the stairs is 2, he has 2 ways.The first one is the first step by 1 stair, and the next step by 1 stair.And the second way is only one step by 2 stairs.

Input

The input is including many test cases. Every line is one test case with a integer number N(N<=40). N is the stairs of the Taishan Mountain.

Output

You should output how many ways WangPeng can climb the mountain, each case output a line.

Sample Input

1 2 3

Sample Output

1 2 3

#include int main() {

int n,i,j,a[41];

while(scanf(\ {

a[0]=1; a[1]=2;

for(i=2;i<40;i++) {

a[i]=a[i-1]+a[i-2]; }

printf(\ } }

Peach

Time Limit:1000MS Memory Limit:65536K

Total Submit:689 Accepted:495

Description

Almost all young man know Monkey Sun whose name is Sun Wukong. One day he steals many peaches from the kingdom of heaven. First day, he ate a half of the peaches, then ate another one of the left peaches.The next day, he ate a half of the left peaches, then another one.Until the n-th day ,before he ate he found only one peach. Please help Sun Wukong to calculate how many peaches he took from the kingdom of heaven.

Input

The input file contains one or more test cases, each line is the days N(1 < n < 30).

Output

For each test case, output a line indicating the number of peaches Monkey Sun had the first day.

Sample Input

2 4

Sample Output

4 22

#include int main() {

int n,t,i,s;

while(scanf(\ {

t=1; s=0;


C语言题目及答案.doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:医院医疗设备管理制度

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: