摘要:
001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i; printf("i = "); scanf("%d", &i); //读取和输 阅读全文
摘要:
001、 给int型变量赋值double型数据 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i; i = 8.583; printf("i 阅读全文
摘要:
001、 %f输出int型数据,其值为0. [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i = 10; printf("i = %f\n" 阅读全文