printf("My favorite number is %d \n"); 这个%d属於一个占位符,因此需要给他一个整数型的数值供他显示,但是你给有给他,所以他就生产了一个int类型范围内的随机数给你显示了,如果你要是想显示num 那麼就要printf("My favorite number is %d \n",num);
printf("My favorite number is %d \n");你这句代码并没有把你上面num参数引用进去,才会导致你运行后你的值不对。你将代码改为printf("My favorite number is %d \n",num);
printf("My favorite number is %d \n",num);
要这样才能输出正确的数值,你想输出却没有传参数,应该是随机输出了一些数据,或者是地址或者是什么垃圾数据
printf("My favorite number is %d \n");//%d没有对应变量
呵呵~才开始学吧,这东西跟着书来就好了,没必要提问。
记得有一本书 大概是叫 提问的艺术