×

c prime 的习题答案

消耗积分:1 | 格式:doc | 大小:553KB | 2014-04-13

Hale.Shi

分享资料个

c prime 的习题答案

  PE 2-1

  /* Programming Exercise 2-1 */

  #include 《stdio.h》

  int main(void)

  {

  printf(“Anton Bruckner\n”);

  printf(“Anton\nBruckner\n”);

  printf(“Anton ”);

  printf(“Bruckner\n”);

  return 0;

  }

  PE 2-3

  /* Programming Exercise 2-3 */

  #include 《stdio.h》

  int main(void)

  {

  int ageyears; /* age in years */

  int agedays; /* age in days */

  /* large ages may require the long type */

  ageyears = 44;

  agedays = 365 * ageyears;

  printf(“An age of %d years is %d days.\n”, ageyears, agedays);

  return 0;

  }
 

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !