#include<stdio.h>
void fun(char c)
{
if(c>'x')
fun(c-1);
printf("%c",c);
}
main()
fun('z');
这个程序跑到c=x之后为什么会打出yz??看不懂是怎么回事??
慕用4063026
月薪过万只是梦
相关分类