- 博客(9)
- 收藏
- 关注
原创 检测到 #include 错误。请更新 includePath。已为此翻译单元(D:\VSCode_C\banker\helloworld.c)禁用波形曲线。C/C++(1696)
检测到 #include 错误。请更新 includePath。已为此翻译单元(D:\VSCode_C\banker\helloworld.c)禁用波形曲线。C/C++(1696)1.首先看你自己的环境变量配置的路径有没有问题,路径到bin还得再加一个“/”。2.看你的c_cpp_properties.jsion,launch.json,tasks.json里的路径是否正确。3.如果以上的都正确无误,那么试一试网上的一位大佬分享出的方法,打开你的c_cpp_properties.jsion,然后找到
2021-12-08 15:35:35
2654
1
原创 安装破解版myeclipse,时出现错误
Exception in thread' main” java. lang. ClassNotFoundException: com. sun. java. swing. p1af. nimbus. NimbusLookAndFeelat java. base/ jdk. internal. loader. Bui ltinClassLoader. loadClass (BuiltinCl...
2020-05-03 19:42:08
798
原创 mysql数据库错误1452
create table Course(Cno char(4) primary key,Cname char(40),Pre_Cno char(4),-- 成绩Credit smallint,-- Pre_cno 参考Cnoforeign key(Pre_Cno) references Course(Cno))character set =utf8insert into ...
2020-04-17 12:31:41
1833
原创 C语言鸡兔同笼问题
#include<stdio.h>int main(){ int h; int f; int rabbit; int chicken; printf("请输入总头数:"); scanf("%d",&h); printf("请输入总脚数:"); scanf("%d",&f);/*鸡兔同笼问题鸡为c只...
2020-03-20 16:48:34
877
原创 C语言学习错误收录
sameCage.c:24:17: error: invalid operands to binary * (have ‘int’ and ‘int *’)sameCage.c:25:15: error: invalid operands to binary - (have ‘int *’ and ‘double *’)错误在了“ * ”和“ - ”上将“*和“-”加上了的运算式子又出现了...
2020-03-20 16:43:37
1113
原创 C语言学习error
error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token今天练习代码发现这个问题;翻译过来就是错误:预期' = ',',',';'," 汇编 "或“属性”在“<”标记后来发现头文件#include中的“#”丢了...
2020-03-20 16:04:19
144
原创 c语言*金字塔
初学C语言,请多指教#include <stdio.h>int main(){ int n;//金字塔的层数 int i;//之间有几个空 int b;//第几层 int j;//*/*构建金字塔 6 * 五个空(i=n-b) 一个*(n) 0(i=b-1) * * ...
2020-03-13 20:36:28
5620
2
原创 #初学C语言,写个九九乘法口诀,请笑纳
#初学C语言,写个九九乘法口诀,请笑纳#include<stdio.h>//乘法口诀表int main(){ int i;//列 int j;//行 int a;//乘积结果/*1*1=1 //第一行2*1=2 2*2=4 //第二行3*1=3 3*2=6 3*3=9 //第三行*/printf("----乘法口诀表----\n");//...
2019-12-08 09:35:40
205
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人