#include <stdio.h>
void
fun(
int
x) {
if
(x / 2 > 0)
fun(x / 2);
printf
(
"%d"
, x);
}
main() {
fun(3);
"\n"
);
by: 发表于:2018-05-25 16:02:45 顶(0) | 踩(0) 回复
??
by: 发表于:2018-05-25 16:02:45 顶(0) | 踩(0) 回复
??
回复评论