第五章数组的程序

1 、没有使用数组的程序

编写一个程序,计算十个同学的平均分(使用FOR循环)
记住名词:grade count sum average

//program 5.1 Averaging ten grades without storing them 
#include<stdio.h>

int main(void)
{
    int grade = 0;
    unsigned int count =10;
    long sum = 0L;
    float average = 0.0f;

    for(unsigned  int i=0 ; i <count; ++i)
    {
        printf("Enter a grade:");
        scanf("%d",&grade);
        sum += grade;
    }
        average = (float)sum/count;
        printf("\nAverage of the ten grades entered is: %f\n", average);
        return 0;
}

试试看:使用数组计算平均分

//program 5.2 Averaging then grades - storing values the hard way
#include<stdio.h>

int main (void)
{
    int grade0 = 0, grade1 =0,grade2 =0,grade3=0,grade4=0;
    int grade5=0,int grade6 =0,int grade7 =0, int grade8=0, int grade9=0;

    long sum = 0L; 
    float average =0.0f;

    printf("Enter the first five grades,\n")
    printf("use a space or press Enter between each number.\n")
    scanf("%d%d%d%d%d",
    &grade0,&grade1,&grade2,&grade3,&grade4);
    printf("Enter the last five numbers in the same manner.\n");
    scanf("%d%d%d%d%d",&grade5,&grade6,grade7,grade8,&grade9);

    sum = grade0+grade1+grade2+grade3+grade4+grade5+grade6+grade7+grade8+grade9;
average =(float)sum/10.f;

      printf("\nAverage of the ten grades entered is: %f\n",average);
      return 0;
}

3、

试试看:使用数组计算平均分

使用数组可以存储所有要平均的分数。即存储所有的分数,以便重复使用他们,现在重写这个程序,计算10个分数的平均值:

//program 5.3 Averaging ten grades - storing the values the easy way
#include<stdio.h>

int main(void)
{
  int grades[10];
  unsigned int count =10;
  long sum =0L;
  float average = 0.0f;

  printf("\nEnter the 10  grades:\n");

  for(unsigned int i =0; i< count ; ++i)
  {
      printf("%2u> ",i +1);
      scanf("%d", &grades[i]);
      sum += grades[i];
  }
      average = (float)sum/count;
      printf("\nAverage of the ten grades entered is: %.2f\n", average);
      return 0;
}

4、

试试看:检索元素值

现在这个程序显示所有输入的值,把这些值存储在数组中,就可以随时用各种不同的方法访问和处理他们。

//program 5.4 Reusing the numbers stored
#include<stdio.h>
int main(void)
{
    int grades[10];
    unsigned int count = 10;
    long sum = 0L;
    float average = 0.0f;

    printf("\nEnter the 10 grades:\n");

    for(unsigned int i = 0; i < count; ++i)
     {
        printf("%2u> ", i + 1);
        scanf("%d", &grades[i]);
        sum += grades[i];
    }
        average = (float)sum/count;

        for(unsiged int i =0; i < count; ++i)
           printf("\nGrade Number %2u is %3d", i + 1, grades[i]);

        printf("\n Average of the grades entered is :%.2f\n",average);
        return 0;
}

5、

试试看: 使用寻址运算符

//program 5.5 Using the & operator
#include <stdio.h>

int main(void)
{
    long a =2L;
    long b =3L;
    long c =3L;

    double a =4.0;
    double d =5.0;
    double c =6.0;

    printf("A variable of type long occupies %u bytes.", sizeof(long));
    printf("\nHere are the addresses of some variables of type long: ");
    printf("\nThe address of a is: %p The address of b is: %p", &a, &b);
    printf("\nThe address of c is: &p", &c);
    printf("\n\nA variable of type double occupies %u bytes.", sizeof(double));
    printf("\nHere are the addresses of  some Variables of type double: ");
    printf("\nThe address of  d  is: %pThe address of e is: %p", &d, &e);
    printf("\nThe address of  f is: %p\n",&f);
    return 0;
}

6、

试试看:多维数组
对于这个应用程序,只需要输入帽子的周长(英寸),然后,显示帽子的尺寸。

//program 5.6 Know your hat size - if you dare....
#include <stdio.h>
#include <stdbool.h>

int main (void)
{
   char size[3][12] = {
         {'6', '6', '6', '6', '7', '7', '7', '7','7', '7', '7', '7'},
         {'1', '5', '3', '7', ' ', '1', '1', '3', '1', '5', '3', '7'},
         {'2', '8', '4', '8', ' ', '8', '4', '8', '2', '8', '4', '8'},
};
int  headsize[12] = 
         {164,166,169,172,175,178,181,184,188, 191,194,197};
float cranium = 0.0f;
int your_head = 0;
bool hat_found = false;

printf("\nEnter the circumference of your head above your eyebrows "  "in inches as  a decimal value : ");
scanf(" %f",&cranium);

your_head = (int)(8.0f*cranium);

size_t i = 0;
if(your_head == headsize[i])
   hat_found = true;
else
{
   for ( i =1 ; i < sizeof(headsize) ;  ++i)
   {

       if( your_head > headsize[i -1] && your_head <= headsize[i])
       {
           hat_found = true;
              break;
       }
  }
}
if(hat_found)
{
   printf(“\nYour hat size is %c %c%c%c\n",
                  size[0][i], size[1][i],
                   (size[1][i] ==' ') ? ' ' : '/', size[2][i]);
}
else
{
   if(your_head < headsize[0])
      printf("\nYou are the proverbial pinhead,NO hat for" "you I'm afraid.\n");
   else
      printf("\nYou, in technical parlance, are a fathead."
                                                                "No hat for you, I'm afraid.\n”);
}
 return 0;
}

7、

试试看:使用变长数组

但这次数组包含的实际分数是输入的

//program 5.7 Averaging a variable number of grades
#include<stdio.h>

int main(void)
{
   size_t   nGrades = 0;
   printf("Enter the number of grades: ");
   scacnf("%zd", &nGrades);
   int grades[nGrades];
   long sum =0L;
   float average =0.0f;
   printf("\Enter the number of grades:");
   
   for(size_t i =0; i< nGrades; ++i) 
   {
      printf("%2zd> ",i +1);
      scanf("%d", &grades[i]);
      sum += grades[i];
    }
      printf("The grades you entered are:\n");
      for(size_t i=0; i <nGrades ; ++i)
      {
          printf("Grade[%2zd] = %3d ", i+1, grades[i]);

          if((i+1) % 5 == 0)
          printf("\n");
      }
          average =float)sum/nGrades;
          printf("\nAverage of the %zd grades entered is : %.2f\n", nGrades. average);
  }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,637评论 18 139
  • 特别说明,为便于查阅,文章转自https://github.com/getify/You-Dont-Know-JS...
    杀破狼real阅读 439评论 0 0
  • 官方中文版原文链接 感谢社区中各位的大力支持,译者再次奉上一点点福利:阿里云产品券,享受所有官网优惠,并抽取幸运大...
    HetfieldJoe阅读 2,334评论 1 21
  • 今天和合伙人聊了很多,有种茅塞顿开的感觉。合伙人是我的老乡,现在在老家,我从大学的时候出来,就没有在家待过,对老家...
    闵伟阅读 771评论 0 0
  • 文/晴天过后上一章 目录 等雨娴给木识治疗完,已是深夜,红豆递过来一块热毛巾,雨娴有些惊讶,红豆笑了笑...
    晴天过后阅读 874评论 6 22