摘要:
f[0],f[i][0],f[i][j][0]记录每维总数 如:开一个a*b*c的三维空间,题目要求a*b*c小于某个值。 阅读全文
摘要:
1 #include 2 #include 3 4 int main() 5 { 6 //%0xld:要是输出小于x位,用0补上,使输出达到x位;否则正常输出。 7 printf("%02ld\n",1); 8 printf("%02ld\n",111); 9 10 printf("------\n"); 11 12 //%xl... 阅读全文
摘要:
http://c.biancheng.net/cpp/html/296.html 头文件:#include <stdio.h> sscanf()函数用于从字符串中读取指定格式的数据,其原型如下: int sscanf (char *str, char * format [, argument, .. 阅读全文