为了账号安全,请及时绑定邮箱和手机立即绑定

无循环或有条件打印1至1000

无循环或有条件打印1至1000

C++ C
慕虎7371278 2019-09-27 16:10:03
任务:打印从1到1000的数字,而不使用任何循环或条件语句。不要只写printf()or cout语句1000次。您将如何使用C或C ++做到这一点?
查看完整描述

3 回答

?
墨色风雨

TA贡献1853条经验 获得超6个赞

编译时间递归!:P


#include <iostream>

template<int N>

struct NumberGeneration{

  static void out(std::ostream& os)

  {

    NumberGeneration<N-1>::out(os);

    os << N << std::endl;

  }

};

template<>

struct NumberGeneration<1>{

  static void out(std::ostream& os)

  {

    os << 1 << std::endl;

  }

};

int main(){

   NumberGeneration<1000>::out(std::cout);

}


查看完整回答
反对 回复 2019-09-27
?
DIEA

TA贡献1820条经验 获得超2个赞

这实际上是编译为没有任何条件的程序集:


#include <stdio.h>

#include <stdlib.h>


void main(int j) {

  printf("%d\n", j);

  (&main + (&exit - &main)*(j/1000))(j+1);

}

编辑:添加了“&”,因此它将考虑地址,从而避免了指针错误。

标准C中的上述版本,因为它不依赖于函数指针的算术运算:


#include <stdio.h>

#include <stdlib.h>


void f(int j)

{

    static void (*const ft[2])(int) = { f, exit };


    printf("%d\n", j);

    ft[j/1000](j + 1);

}


int main(int argc, char *argv[])

{

    f(1);

}


查看完整回答
反对 回复 2019-09-27
?
ITMISS

TA贡献1871条经验 获得超8个赞

#include <stdio.h>

int i = 0;

p()    { printf("%d\n", ++i); }

a()    { p();p();p();p();p(); }

b()    { a();a();a();a();a(); }

c()    { b();b();b();b();b(); }

main() { c();c();c();c();c();c();c();c(); return 0; }

我很惊讶似乎没有人发布此消息-我认为这是最明显的方法。 1000 = 5*5*5*8.


查看完整回答
反对 回复 2019-09-27
  • 3 回答
  • 0 关注
  • 564 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信