摘要:
1.数据类型 c语言自带的一些数据类型 char //字符型 1byte short //短整型 2byte int //整型 4byte long //长整型 4 or 8byte long long //更长的整型 8byte float //单精度浮点数 4byte double //双精度浮 阅读全文
摘要:
代码如下 要求计算最后输出的count的结果 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int count = 0; int fib(int a) { count++; if (a == 0) return 1; else if (a == 阅读全文