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

任务:打印从1到1000的数字,而不使用任何循环或条件语句。不要只写printf()or cout语句1000次。


您将如何使用C或C ++做到这一点?


慕虎7371278
浏览 565回答 3
3回答

墨色风雨

编译时间递归!:P#include <iostream>template<int N>struct NumberGeneration{&nbsp; static void out(std::ostream& os)&nbsp; {&nbsp; &nbsp; NumberGeneration<N-1>::out(os);&nbsp; &nbsp; os << N << std::endl;&nbsp; }};template<>struct NumberGeneration<1>{&nbsp; static void out(std::ostream& os)&nbsp; {&nbsp; &nbsp; os << 1 << std::endl;&nbsp; }};int main(){&nbsp; &nbsp;NumberGeneration<1000>::out(std::cout);}

DIEA

这实际上是编译为没有任何条件的程序集:#include <stdio.h>#include <stdlib.h>void main(int j) {&nbsp; printf("%d\n", j);&nbsp; (&main + (&exit - &main)*(j/1000))(j+1);}编辑:添加了“&”,因此它将考虑地址,从而避免了指针错误。标准C中的上述版本,因为它不依赖于函数指针的算术运算:#include <stdio.h>#include <stdlib.h>void f(int j){&nbsp; &nbsp; static void (*const ft[2])(int) = { f, exit };&nbsp; &nbsp; printf("%d\n", j);&nbsp; &nbsp; ft[j/1000](j + 1);}int main(int argc, char *argv[]){&nbsp; &nbsp; f(1);}

ITMISS

#include <stdio.h>int i = 0;p()&nbsp; &nbsp; { printf("%d\n", ++i); }a()&nbsp; &nbsp; { p();p();p();p();p(); }b()&nbsp; &nbsp; { a();a();a();a();a(); }c()&nbsp; &nbsp; { b();b();b();b();b(); }main() { c();c();c();c();c();c();c();c(); return 0; }我很惊讶似乎没有人发布此消息-我认为这是最明显的方法。 1000 = 5*5*5*8.
打开App,查看更多内容
随时随地看视频慕课网APP