编程作业20191104132052

和自甴很熟 提交于 2019-11-25 22:59:47

1.编写一个程序,创建一个包含26个元素的数组,并在其中储存26个小写字母。然后打印数组的所有内容。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	char ch[26];
	int i;
	for(i=0;i<26;i++)
	{
		ch[i]='a'+i;
		printf("%c",ch[i]);
	}
	getchar();
	return 0;
}

2.使用嵌套循环,按下面的格式打印字符: $ $$ $$$ $$$$ $$$$$

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int i,j;
	for(i=0;i<5;i++)
	{
		for(j=0;j<i+1;j++)
		printf("$");
		printf("\n");
	}
	getchar();
	return 0;
} 

3.使用嵌套循环,按下面的格式打印字母:

F FE FED FEDC FEDCB FEDCBA

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int N=6,i,j;
	for(i=0;i<N;i++){
		for(j=0;j<=i;j++){
			printf("%c",(char)('A'+N-1-j));
		}
		printf("\n");
	}
	return 0;
}

4.使用嵌套循环,按下面的格式打印字母:

A BC DEF GHIJ KLMNO PQRSTU

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int i=0,j=0;
	char aaa='A';
	for(i=1;i<=6;i++){
		for(j=1;j<=i;j++){
			printf("%c",aaa++);
		}
		printf("\n\n");
	}
	return 0;
} 

5.编写一个程序,提示用户输入大写字母。使用嵌套循环以下面金字塔型的格式打印字母:

A ABA ABCBA ABCDCBA ABCDEDCBA 打印这样的图形,要根据用户输入的字母来决定。例如,上面的图形是在用户输入E后的打印结果。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int i,j,k;
	char letter;
	printf("please input a capital:");
	scanf("%c",&letter);
	k=letter-'A'+1;
	for(i=0;i<k;i++){
		for(j=0;j<k-i;j++)
		   printf(" ");
		for(j=0;j<=i;j++)
		   printf("%c",'A'+j);
        for(j=i-1;j>=0;j--)
           printf("%c",'A'+j);
        printf("\n");
	}
	return 0;
} 

6.编写一个程序打印一个表格,每一行打印一个整数、该数的平方、该数的立方。要求用户输入表格的上下限。使用一个for循环。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int lower,upper,index;
	int square,cube;
	printf("Enter starting integer and ending integer:");
	while(scanf("%d %d",&lower,&upper)==2){
		printf("%5s %10s %15d\n","num","square","cube");
		for(index=lower;index<=upper;index++){
			square=index*index;
			cube=index*square;
			printf("%5d %10d %15d\n",index,square,cube);
		}
		printf("Enter next pair(non-numeric to quit):\n");
	}
	return 0;
} 

7.编写一个程序把一个单词读入一个字符数组中,然后倒序打印这个单词。提示:strlen()函数)可用于计算数组最后一个字符的下标。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	char a[20];
	int i;
	printf("please input a word:");
	scanf("%s",a);
	for(i=strlen(a)-1;i>=0;i--)
	   printf("%c",a[i]);
    printf("\n");
    return 0;
}

8.编写一个程序,要求用户输入两个浮点数,并打印两数之差除以两数乘积的结果。在用户输入非数字之前,程序应循环处理用户输入的每对值。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	float a,b,c;
	printf("Enter two float numbers:");
	while(scanf("%f %f",&a,&b)==2){
		c=(a-b)/(a*b);
		printf("c=%f\n",c);
		printf("Enter next pair(non-numeric to quit):\n");
	}
	return 0;
}

9.编写一个程序,要求用户输入一个上限整数和一个下限整数,计算从上限到下限范围内所有整数的平方和,并显示计算结果。然后程序继续提示用户输入上限和下限整数,并显示结果,直到用户输入的上限整数小于下限整数为止。程序的运行示例如下:

Enter lower and upper integer limits: 5 9 The sums of the squares from 25 to 81 is 255 Enter next set of limits: 3 25 The sums of the squares from 9 to 625 is 5520 Enter next set of limits: 5 5 Done

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int lower,upper,index;
	printf("Enter lower and upper integer limits: ");
	while(scanf("%d %d",&lower,&upper)==2 && lower !=upper){
		int sum=0;
		for(index=lower;index<=upper;index++){
			sum+=index*index;
		}
		printf("the sums of the squares from %d to %d is %d\n",lower*lower,upper*upper,sum);
		printf("Enter next set of limits: ");
	}
	printf("done\n");
	return 0;
} 

10.编写一个程序,在数组中读入8个整数,然后按倒序打印这8个整数。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
#define SIZE 8
int main(void)
{
	int a[SIZE],i;
	printf("enter %d interges.\n",SIZE);
	for(i=0;i<SIZE;i++)
	   scanf("%d",&a[i]);
    for(i=SIZE-1;i>=0;i--)
       printf("%d",a[i]);
    printf("\n");
    return 0;
}

11.考虑下面两个无限序列: 1.0 + 1.0/2.0 + 1.0/3.0 + 1.0/4.0 + ... 1.0 - 1.0/2.0 + 1.0/3.0 - 1.0/4.0 + ... 编写一个程序计算这两个无限序列的总和,直到到达某次数。提示:奇数个-1 相乘得-1,偶数个-1相乘得1。让用户交互地输入指定的次数,当用户输入0或负值时结束输入。查看运行100项、1000项、10000项后的总和,是否发现每个序列都收敛于某值

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	float number1=1.0,number2=1.0;
	float result1=0,result2=0;
	int item;
	int i;
	printf("please input the items:\n");
	scanf("%d",&item);
	for(i=1;i<=item;i++,number2++){
		result1=result1+number1/number2;
	}
	foe(i=1;i<=item;i++,number2++){
		if(i%2==0){
			number1=-1.0;
		}
		else{
			number1=1.0;
		}
		result2=result2+number1/number2;
	}
	printf("result1=%f\n result2=%f",result1,result2);
	return 0;
}

12.编写一个程序,创建一个包含8 个元素的int 类型数组,分别把数组元素设置为2 的前8 次幂。使用for 循环设置数组元素的值,使用do while 循环显示数组元素的值。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
#define SIZE 8
int main(void)
{
	int a[SIZE],i;
	a[0]=1;
	for(i=1;i<SIZE;i++){
		a[i]=2*a[i-1];
	}
	i=0;
	do{
		printf("%d",a[i]);
		i++;
	}
	while(i<SIZE);
	printf("\n");
	return 0;
} 

13.编写一个程序,创建两个包含8个元素的double类型数组,使用循环 提示用户为第一个数组输入8 个值。第二个数组元素的值设置为第一个数组 对应元素的累积之和。例如,第二个数组的第 4个元素的值是第一个数组前 4个元素之和,第二个数组的第5个元素的值是第一个数组前5个元素之和 (用嵌套循环可以完成,但是利用第二个数组的第5个元素是第二个数组的 第4个元素与第一个数组的第5个元素之和,只用一个循环就能完成任务,不 需要使用嵌套循环)。最后,使用循环显示两个数组的内容,第一个数组显 示成一行,第二个数组显示在第一个数组的下一行,而且每个元素都与第一 个数组各元素相对应。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	double array1[8],array2[8];
	int i=0;
	double sum=0;
	printf("please input 8 integers:\n");
	for(i=0 ;i<8;i++){
		scanf("%1f",&array1[i]);
		sum=sum+array1[i];
	}
	for(i=0;i<8;i++){
		printf("%8.0f",array1[i]);
	}
	printf("\n");
	for(i=0;i<8;i++){
		printf("%8.0f",array2[i]);
	}
	return 0;
} 

14.编写一个程序,读取一行输入,然后把输入的内容倒序打印出来。 可以把输入储存在char类型的数组中,假设每行字符不超过255。回忆一 下,根据%c转换说明,scanf()函数一次只能从输入中读取一个字符,而且 在用户按下Enter键时scanf()函数会生成一个换行字符(\n)。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	char data[255];
	int i=-1;
	do{
		i++;
		scanf("%c",&data[i]);
	}
	while(data[i]!='\n');
	for(i=-1;i>=0;i--)
	return 0;
}

15.Daphne以10%的单利息投资了100美元(也就是说,每年投资获利相 当于原始投资的10%)。Deirdre以 5%的复合利息投资了 100 美元(也就是 说,利息是当前余额的 5%,包含之前的利息)。编写一个程序,计算需要多少年Deirdre的投资额才会超过Daphne,并显示那时两人的投资额。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	double sum1=100.00,sum2=100.00;
	double a=100.00;
	int year=0;
	do{
		year++;
		sum1=sum1+a 0.1;
		sum2=sum2+sum2 0.05;
	}
	while(sum1>=sum2);
	printf("after %d year,deirdre's account:%.2f,daphne's account:%.2f\n",year,sum1,sum2);
	return 0;
} 

16.Chuckie Lucky 赢得了100 万美元(税后),他把奖金存入年利率8%的账户。在每年的最后一天,Chuckie 取出10 万美元。编写一个程序,计算多少年后Chuckie 会取完账户的钱?

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	double sum=100.00;
	int year=0;
	do{
		year++;
		sum=sum+sum*0.08;
		sum-=10;
	}
	while(sum>0);
	printf("after %d year,chuckie lucky has no money!\n",year);
	return 0;
} 

17.Rabnud博士加入了一个社交圈。起初他有5个朋友。他注意到他的朋 友数量以下面的方式增长。第1周少了1个朋友,剩下的朋友数量翻倍;第2 周少了2个朋友,剩下的朋友数量翻倍。一般而言,第N周少了N个朋友,剩 下的朋友数量翻倍。编写一个程序,计算并显示Rabnud博士每周的朋友数 量。该程序一直运行,直到超过邓巴数(Dunbar’s number)。邓巴数是粗略 估算一个人在社交圈中有稳定关系的成员的最大值,该值大约是150。

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
int main(void)
{
	int quantity=5;
	int week=0;
	do{
		week++;
		quantity-=week;
		quantity=quantity*2;
	}
	while(quantity<=150);
	printf("after %d weeks,rabnud's friends over 150!\n",week);
	return 0;
} 

18.

/**
	Module Name: 

	Description:

	Author:
	Created:
	Last Change:

	Functions:

*/
#include<stdio.h>
#define RATE_SIMP 0.10 
#define RATE_COMP 0.05
#define INIT_AMT 100
int main(void)
{
	double daphne=INIT_AMT;
	double deidre=INIT_AMT;
	int years=0;
	while(deire<=daphne){
		daphne+=RATE_SIMP*INIT_AMT;
		deidre+=RATE_COMP*deidre;
		years++;
	}
	printf("%d years later,deidre's money more than daphne's\n",years);
	printf("daphne=%f\n",daphne);
	printf("deidre=%f",deidre);
	return 0;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!