摘要: 1 #include <stdio.h> 2 3 int main() 4 { 5 6 double i; 7 8 for(i=0;i!=10;i+=0.1) 9 printf("%.1lf\n",i); 10 11 return 0; 12 } 0.00.10.20.30.40.50.60.70. 阅读全文
posted @ 2021-10-18 02:09 MikeLi 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/gongxifacai_believe/article/details/53081466 编译HelloWorld.java生成字节码文件HelloWorld.class,运行HelloWorld.class报错:Error: Could not 阅读全文
posted @ 2021-10-18 01:45 MikeLi 阅读(3019) 评论(0) 推荐(1) 编辑