C_Primer_Plus_第五版_全书源代码.docVIP

  • 40
  • 0
  • 约7.25万字
  • 约 70页
  • 2016-12-29 发布于重庆
  • 举报
// chapter 01 /* #include stdio.h int main(void) { int dogs; printf(How many dogs do you have?\n); scanf(%d, dogs); printf(So you have %d dog(s)!\n, dogs); return 0; } */ ////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////// //chapter 02 // fathm_ft.c -- converts 2 fathoms to feet /* #include stdio.h int main(void) { int feet, fathoms; fathoms = 2; feet = 6 * fathoms; printf(There are %d feet in %d fathoms!\n, feet, fathoms); printf(Yes, I said %d feet!\n, 6 * fathoms);

文档评论(0)

1亿VIP精品文档

相关文档