"火柴棍式"程序员笔试题

时间:2015-01-06 06:32:15
染雾
分享
WORD下载 PDF下载 投诉

"火柴棍式"程序员笔试题

  下面是一个C程序,其想要输出20个减号,不过,粗心的程序员把代码写错了,你需要把下面的代码修改正确,不过,你只能增加或是修改其中的`一个字符,请你给出三种答案,

"火柴棍式"程序员笔试题

  int n = 20;

  for(int i = 0; i < n; i–){

  printf(“-”);

  }

  同类其他面试题 点击新一篇或旧一篇可浏览全部同类面试题

  新一篇:c语言面试题大汇总

  旧一篇:C面试题(编程)

  共有4 条 关于 ““火柴棍式”程序员面试题”的评论

  1

  李德华:

  #include “stdio.h”

  void main()

  {

  int n = 20;

  for(int i = 0; i < n; i–)

  {

  printf("-");

  }

  }

  2

  圣诞:

  #include “stdio.h”

  #define SS “———————————–”

  void main()

  {

  printf(“%s”,SS);

  }

  3

  云淡风轻:

  int n = 20;

  for(int i = 0; i < n; i++){

  printf(“-”);

  }

  4

  李启宗:

  int n = 20;

  for(int i = 0; i < n; n–){

  printf(“-”);

  }

  int n = 20;

  for(int i = 40; i < n; i–){

  printf(“-”);

  }

  int n = 20;

  for(int i = 0; -i < n; i–){

  printf(“-”);

  }

"火柴棍式"程序员笔试题

手机扫码分享

Top