第六章
程序员文章站
2022-05-23 09:58:41
...
第六章 利用数组处理批量数据
例6.1 对十个数组元素依次赋值为0123456789,逆序输出。
#include<stdio.h>
int main()
{
int i,a[10];
for(i=0;i<=9;i++)
a[i]=i;
for(i=9;i>=0;i--)
printf("%d ",a[i]);
printf("\n");
return 0;
}
例6.2 用数组处理求斐波那契数列问题。
#include<stdio.h>
int main()
{
int i;
int f[20]={1,1};
for(i=2;i<20;i++)
f[i]=f[i-2]+f[i-1];
for(i=0;i<20;i++)
{
if(i%5==0) printf("\n");
printf("%12d",f[i]);
}
printf("\n");
return 0;
}
例6.3 有十个地区的面积,由小到大的顺序排列。
#include<stdio.h>
int main()
{
int a[10];
int i,j,t;
printf("input 10 numbers:\n");
for(i=0;i<10;i++)
scanf("%d",&a[i]);
printf("\n");
for(j=0;j<9;j++)
for(i=0;i<9-j;i++)
if(a[i]>a[i+1])
{t=a[i];a[i]=a[i+1];a[i+1]=t;}
printf("the sorted numbers:\n");
for(i=0;i<10;i++)
printf("%d ",a[i]);
printf("\n");
return 0;
}
例6.4 将一个二维数组行列互换,存到另一个二维数组中。
#include<stdio.h>
int main()
{
int a[2][3]={{1,2,3},{4,5,6}};
int b[3][2],i,j;
printf("array a:\n");
for(i=0;i<=1;i++)
{
for(j=0;j<=2;j++)
{
printf("%5d",a[i][j]);
b[j][i]=a[i][j];
}
printf("\n");
}
printf("array b:\n");
for(i=0;i<=2;i++)
{
for(j=0;j<=1;j++)
printf("%5d",b[i][j]);
printf("\n");
}
return 0;
}
例6.5 有一个3*4的矩阵,求出其中值最大的元素的值,及行和列。
#include<stdio.h>
int main()
{ int i,j,row=0,colum=0,max;
int a[3][4]={{1,2,3,4},{9,8,7,6},{-10,10,-5,2}};
max=a[0][0];
for(i=0;i<=2;i++)
for(j=0;j<=3;j++)
if(a[i][j]>max)
{max=a[i][j];
row=i;
colum=j;
}
printf("max=%d\nrow=%d\ncolum=%d\n",max,row,colum);
return 0;
}
例6.6 输出一个已知的字符串。
#include<stdio.h>
int main()
{
char c[15]={'I',' ','a','m',' ','a','s','t','d','e','n','t','.'};
int i;
for(i=0;i<15;i++)
printf("%c",c[i]);
printf("\n");
return 0;
}
例6.7 输出一个菱形图。
#include<stdio.h>
int main()
{char diamond[ ][5]={{' ',' ','*'},{' ','*',' ','*'},{'*',' ',' ',' ','*'},{' ','*',' ','*'},{' ',' ','*'}};
int i,j;
for(i=0;i<5;i++)
{ for(j=0;j<5;j++)
printf("%c",diamond[i][j]);
printf("\n");
}
return 0;
}
例6.8 输入一行字符,统计其中有多少个单词。单词之间用空格分开。
#include<stdio.h>
int main()
{
char string[81];
int i,num=0,word=0;
char c;
gets(string);
for(i=0;(c=string[i])!='\0';i++)
if(c==' ')word=0;
else if(word==0)
{word=1;
num++;
}
printf("There are %d words in this line.\n",num);
return 0;
}
例6.9 有三个字符串,要求找出其中最大者。
#include<stdio.h>
#include<string.h>
int main()
{
char str[3][20];
char string[20];
int i;for(i=0;i<3;i++)
gets(str[i]);
if(strcmp(str[0],str[1])>0)
strcpy(string,str[0]);
else strcpy(string,str[1]);
if(strcmp(str[2],string)>0)
strcpy(string,str[2]);
printf("\nthe largest string is:\n%s\n",string);
return 0;
}
上一篇: 第六章
下一篇: Groovy 1.6.2 发布!
推荐阅读
-
第六章 键盘(SYSMETS4)
-
实战SpringCloud响应式微服务系列教程(第六章)
-
.NET Core IdentityServer4实战 第六章-Consent授权页
-
Deep Learning with Pytorch 中文简明笔记 第六章 Using a neural network to fit the data
-
第六章 最短路径
-
[书籍翻译] 《JavaScript并发编程》第六章 实用的并发
-
第六章 php目录与文件操作
-
【.NET Core项目实战-统一认证平台】第六章 网关篇-自定义客户端授权
-
第六章 键盘(SYSMETS4)
-
【自考】数据结构第六章查找,期末不挂科指南,第10篇