30
向后执行打印
您的任务是颠倒某些prints命令的执行顺序。 规格: 您的代码将采用以下形式: //some lines of code /*code*/ print "Line1" /*code*/ /*code*/ print "Line2" /*code*/ /*code*/ print "Line3" /*code*/ /*code*/ print "Line4" /*code*/ //some lines of code 您必须print(从第四到第一)(或echo,或write,或等效)这些字符串。 您可以决定程序的哪些行必须print使用字符串,但是它们必须相邻; 每行只能包含一个print,并且长度不能超过60个字节; 因为这是一场人气竞赛,所以要有创造力,避免只写一个goto或简单的for(i){if(i=4)print"Line1";if(i=3)...} 2周内获得最高评价的答案将赢得此奖项。 您的输出必须为Line4 Line3 Line2 Line1 OR Line4Line3Line2Line1 OR Line4\nLine3\nLine2\nLine1(其中\n是换行符),并且必须仅通过prints向后执行来生成它。 编码愉快! 更新:比赛结束了!谢谢你们 :)