20191104132052

有些话、适合烂在心里 提交于 2019-12-04 07:10:20

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

/**
	Module Name: 
	Description:
	Author:
	Created:
	Last Change:
	Functions:
*/
#include <stdio.h>
#define SIZE 26
int main(void)
{
	char ch[SIZE];
	int i;
	for(i=0;i<SIZE;i++){
		ch[i]='a'+i;
	}
	for(i=0;i<SIZE;i++){
		printf("%c",ch[i]);
	}
	return 0;
}

2.

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

#include <stdio.h>
int main(int argc, char *argv[])
{
	char let='A',b='A';
	char start,end,amount=5,a;
	for(start=1;start<=5;start++){
		while(amount>0){
			printf(" ");
			amount--;
		}
		amount=5-start;
		for(end=1;end<=start;end++){
			printf("%c",let);
			let++;
		}
		let='A';
		for(a=start-1;a>=1;a--)
		printf("%c",a+64);
		printf("\n");
	}
	return 0;
}

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

F FE FED FEDC FEDCB FEDCBA

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

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

A BC DEF GHIJ KLMNO PQRSTU

/**
	Module Name: 
	Description:
	A 
	BC 
	DEF 
	GHIJ 
	KLMNO 
	PQRSTU
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	int i,j;
	char ch='A';
	int x=0;
	for(i=1;i<=6;i++){
		for(j=1;j<=i;j++){
			printf("%c",ch+x++);
		} 
		printf("\n");
	}
	return 0;
}

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

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

#include <stdio.h>
int main(int argc, char *argv[])
{
	char let='A',b='A';
	char start,end,amount=5,a;
	for(start=1;start<=5;start++){
		while(amount>0){
			printf(" ");
			amount--;
		}
		amount=5-start;
		for(end=1;end<=start;end++){
			printf("%c",let);
			let++;
		}
		let='A';
		for(a=start-1;a>=1;a--)
		printf("%c",a+64);
		printf("\n");
	}
	return 0;
}

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

/**
	Module Name: 打印平方,立方 
	Description:
	Author:xzb 
	Created:2019-11-09 
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	int a,b,i,j=0;
	printf("请输入上限和下限:\n");
	scanf("%d",&a);
	scanf("%d",&b);
	while(a!=0){
		for(i=a;i<=b;i++){
		j=j+i*i;
		printf("The sums of the squares from %d to %d is %d \n",a,b,j);
		}
		printf("请输入上限和下限:\n");
		scanf("%d",&a);
		scanf("%d",&b);
	}
	return 0;
}

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

/**
	Module Name:倒序单词 
	Description:
	Author:xzb
	Created:2019-11-8
	Last Change:
	Functions:
*/
#include <stdio.h>
#include <string.h>
 
int main(void)
{
    char i[100];
    int j;
    printf("please input\n");
    scanf("%s",&i);
    int n=strlen(i);
    for(j=n-1;j>=0;j--)
    {
        printf("%c",i[j]);
    }
    printf("\n");
    return 0;
}

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

/**
	Module Name: 
	Description:用户输入两个浮点数,打印两数之差除以两数乘积的结果,在输入非数学之前,循环处理每对值 
	Author:
	Created:
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	float m,n,res;
	printf("please input a pair number\n");
	while(scanf("%f %f",&m,&n)==2){
		res=(m-n)/(m*n);
		printf("res=%f\n",res);
		printf("input next pair number\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:xzb 
	Created:2019-11-09 
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	int a,b,i,j=0;
	printf("请输入上限和下限:\n");
	scanf("%d",&a);
	scanf("%d",&b);
	while(a!=0){
		for(i=a;i<=b;i++){
		j=j+i*i;
		}
		printf("The sums of the squares from %d to %d is %d \n",a,b,j);
		printf("请输入上限和下限:\n");
		scanf("%d",&a);
		scanf("%d",&b);
	}
	return 0;
}

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

/**
	Module Name: 
	Description:编写一个程序,在数组中读入8个整数,然后按倒序打印这8个整数。
	Author:
	Created:
	Last Change:
	Functions:
*/
#include <stdio.h>
#define SIZE 8
int main(void)
{
	int values[SIZE];
	int i;
	printf("please input %d intvalues\n",SIZE);
	for(i=0;i<SIZE;i++){
		scanf("%d",&values[i]);
	}
	for(i=SIZE-1;i>=0;i--){
		printf("%d",values[i]);
	}
	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:考虑下面两个无限序列: 

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 + ... 

	Author:
	Created:
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	float i,j,k=0,l=0,m=0,n=1,p=0;
	printf("请输入计算次数:\n");
	scanf("%f",&i);
	while(i>0){
		for(j=1;j<=i;j++){
		k=1/j;
		l=1/j*n;
		m=m+k;
		p=p+l;
		n*=-1;	
		}
		printf("序列1和为:%.2f\n",m);
		printf("序列2和为:%.2f\n",p);
		k=0;
		l=0;
		n=1;
		m=0;
		printf("请输入计算次数:\n");
		scanf("%f",&i);
	}
	return 0;
}

12.修改练习8,使用1个函数返回计算结果

未完成

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

/**
	Module Name: 2幂次
	Description:
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
#include <math.h>
#define SIZE 8
int main(void)
{
	int i[SIZE],j,k=1;
	for(j=1;j<=SIZE;j++){
		i[j]=pow(2,j);
	}
	do{
		printf("%d\n",i[k]);
		k++;
	}
	while(k<=8);
	return 0;
}

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

/**
	Module Name: double求和
	Description:
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
#define SIZE 8
int main(void)
{
	double shuzu1[SIZE],shuzu2[SIZE];
	int i,j,k,l;
	printf("please input %d intvalues\n",SIZE);
	for(i=0;i<SIZE;i++){
		scanf("%lf",&shuzu1[i]);
	}
	for(j=0;j<SIZE;j++){
		printf("%.2lf ",shuzu1[j]);
	}
	printf("\n");
	shuzu2[0]=shuzu1[0];
	for(k=1;k<SIZE;k++){
		shuzu2[k]=shuzu2[k-1]+shuzu1[k];
	}
	for(l=0;l<SIZE;l++){
		printf("%.2lf ",shuzu2[l]);
	}
	return 0;
}

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

/**
	Module Name:倒序句子
	Description:
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
int main(void)
{
	char i[256];
    int j;
    printf("please input\n");
    scanf("%s", i);
    int n=strlen(i);
    for(j=n-1;j>=0;j--)
    {
        printf("%c",i[j]);
    }
    printf("\n");
	return 0;
}

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

#include <stdio.h>
#define RATE_SIMP 0.1
#define RATE_COMP 0.05
#define INIT_AMT 100 
int main(int argc, char *argv[])
{
	double daphne=INIT_AMT;
	double deidre=INIT_AMT;
	int years=0;
	while(deidre<=daphne){
		daphne+=RATE_SIMP*INIT_AMT;
		deidre+=RATE_COMP*deidre;
		years++;
	}
	printf("%d years later,deidre'money more than daphne's\n");
	printf("%f\n",daphne);
	printf("%f",deidre);
	return 0;
}

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

/**
	Module Name: 奖金取钱 
	Description:
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
#define AIR 0.08
int main(void)
{
	double i,j;
	j=1e6;
	do{
		j=(1+AIR)*j-1e5;
		i++;
	}while(j>0);
	printf("%.2lf",i);
	return 0;
}

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

/**
	Module Name: 博士朋友 
	Description:
	Author:xzb
	Created:2019-11-12
	Last Change:
	Functions:
*/
#include <stdio.h>
#include <math.h>
int main(void)
{
	int j;
	j=5;
	while(j<150){
		j=pow(j-1,2);
		printf("%d ",j);
	}
	return 0;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!