Error (10500):VHDL syntax error at biaojue.vhd(16) near text

zhh001zzz2022-10-04 11:39:541条回答

Error (10500):VHDL syntax error at biaojue.vhd(16) near text "begin"; expecting an identifier ("b
Error (10500):VHDL syntax error at biaojue.vhd(16) near text "begin"; expecting an identifier ("begin" is a reserved keyword),or "constant",or "file",or "signal",or "variable"
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity biaojue isx05
port (
xin:in std_logic_vector ( 6 downto 0 );
sel2:out std_logic;
);
end biaojue ;
architecture bev of biaojue is
begin
process ( xin );
variable j:integer :=0
begin
j:=0;
for i in 0 to 6 loop
if xin(i)='1' then
j:=j+1;
end if ;
end loop;
if j>3 then
sel2

已提交,审核后显示!提交回复

共1条回复
18blue 共回答了14个问题 | 采纳率78.6%
variable j:integer :=0 少了结束符“;”.应当为variable j:integer :=0;
1年前

相关推荐

org.hibernate.hql.ast.QuerySyntaxException: unexpected token
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: * near line 1, column 8
* near line 1, column 8 [select * from (select t.*, rownum rn from edu.rjxy.entity.Task t) where rn>=(?-1)*?+1 and rn
星海知心1年前1
衣衫褴褛黄发男孩 共回答了19个问题 | 采纳率89.5%
你的HQL语句错了,检查一下 HQL语句 ,如果测试可以 打印出sql语句测试 在hibernate中加入参数 show_sql 值为 true
高分求教……org.hibernate.hql.ast.QuerySyntaxException:User is not
高分求教……org.hibernate.hql.ast.QuerySyntaxException:User is not mapped [from User]
org.springframework.orm.hibernate3.HibernateQueryException:User is not mapped [from User]; nested exception is org.hibernate.hql.ast.QuerySyntaxException:User is not mapped [from User]
org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:657)
org.springframework.orm.hibernate3.HibernateTemplate.find(HibernateTemplate.java:921)
org.springframework.orm.hibernate3.HibernateTemplate.find(HibernateTemplate.java:913)
com.test.model.UserAction.execute(UserAction.java:54)
……
beans.xml中是:
com.test.model
hibernate.dialect=org.hibernate.dialect.SQLServerDialect
hibernate.show_sql=true
hibernate.hbm2ddl.auto=update
struts.xml如下:
/success.jsp
/fail.jsp
……
.class类如下:
public String execute() throws Exception {
if(password.equals(password2)){
User user = new User();
user.setUsername(username);
user.setPassword(password);
hibernateTemplate.save(user);
return hibernateTemplate.find("from User").size()>0?"success":"fail";
}
return "fail";
}
不是我想写那么多,实在是没有办法了,第一次用struts2hibernatespring整合后出现的这个问题,我一整天了都没得解决,hibernateTemplate.save()可以,但hibernateTemplate.find()就不得了,把我的分拿去吧
hfye1年前1
那一季的飞扬 共回答了22个问题 | 采纳率90.9%


com.test.model




hibernate.dialect=org.hibernate.dialect.SQLServerDialect
hibernate.show_sql=true
hibernate.hbm2ddl.auto=update

Syntax error on token ";",Expression expected after this tok
Syntax error on token ";",Expression expected after this toke
这是什么情况造成的,上面的英语为啥意思,
海边独自tt的人1年前1
ppwendy 共回答了15个问题 | 采纳率93.3%
这句话的意思是:在“;”附近有语法错误,在它之后应该有一个表达式.
你肯定是语法错了,仔细查看一下提示错误的那一行和它的附近,是不是因为疏忽大意出错了.
有问题可以找我.
Functional syntax and universal grammar 是啥意思?
不想出名1年前1
Eschylus 共回答了22个问题 | 采纳率95.5%
Functional syntax 是功能句法.好像只听说过Functional syntax 功能语法
universal grammar是普遍语法,是乔姆斯基的理论
your request has bad syntax or is inherently impossible to s
your request has bad syntax or is inherently impossible to satisty翻译成中文是什么意思
asl5211年前1
天使冢 共回答了21个问题 | 采纳率95.2%
英语:your request has bad syntax or is inherently impossible to satisty

翻译:你的请求有语法错误或请求本身是无法满足的。

释义:你的请求或者操作是错误的,或者是本身不可能满足的请求
lingo8.0错误11 Invalid input.A syntax error has occurred 哪里有错误
lingo8.0错误11 Invalid input.A syntax error has occurred 哪里有错误 求大神指教
Model:  
Min=1200*(x1+x2)+1500*(x3+x4);  
x1+x2>=30;  
x1+x2>=35;  
x1+x3+x4>=20;  
x2+x3+x4>=20;  
x1+x2+x3+x4>=40;  
x1+x2+x4>=30;  
x3>=30;  
x3+x4>=25;  
x3+x4>=20;
@gin(x1);
@gin(x2);
@gin(x3);
@gin(x4);  
end
我是用户名呀1年前1
csjian_77 共回答了14个问题 | 采纳率85.7%
你这里有很多全角的空格 所以出问题
Model:
Min=1200*(x1+x2)+1500*(x3+x4);
x1+x2>=30;
x1+x2>=35;
x1+x3+x4>=20;
x2+x3+x4>=20;
x1+x2+x3+x4>=40;
x1+x2+x4>=30;
x3>=30;
x3+x4>=25;
x3+x4>=20;
@gin(x1);
@gin(x2);
@gin(x3);
@gin(x4);
end
Error (10500):VHDL syntax error at bijiao.vhd(26) near text
Error (10500):VHDL syntax error at bijiao.vhd(26) near text "PROCESS"; expecting a sequential stat
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_ARITH.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY bijiao IS
PORT(A,B:IN BIT_VECTOR(3 DOWNTO 0);
F1,F2,F3:OUT BIT);
END bijiao;
ARCHITECTURE behave OF bijiao IS
BEGIN
PROCESS(A,B)
BEGIN
IF(A>B) THEN
F1
gangtie20071年前1
悠悠黄土地 共回答了16个问题 | 采纳率100%
问题是这样子的:
你在第二个分支时使用的是ELSE IF 而不是ELSIF.那么也就是说这个语句中有两个IF语句,你的最后的END IF只是针对最近的IF.所以建议你将第二个分支改成ELSIF就可以了:)
syntax 请问这两个句子各是什么语法
syntax 请问这两个句子各是什么语法
Mrs.Sawyer usually drinks tea in the living room.
But this afternoon,she is drinking tea in the garden.
1 第一句中drink后加 s 第二句中drink加 ing 为什么?
2 这两句各是什么样的时态?
太阳2191年前3
忘情天书5251 共回答了15个问题 | 采纳率93.3%
第一句是一般现在时,
Mrs.Sawyer为第三人称单数,动词要加S.所以用drinks.
第二句是现在进行时,
基本结构是 be doing,所以动词drink要加ing.
(急!在线等)用lingo 10.0建模时出现以下错误:invalid input.A syntax error has
(急!在线等)用lingo 10.0建模时出现以下错误:invalid input.A syntax error has occured.
代码如下:
MODEL:
DATA:
M=1;
ENDDATA
min=(13.6+1000*M)*x1+(12.45+800*M)*x2+(12.3+800*M)*x3+(10.15+1000*M)*x4; 目标函数;
x1=10;
x1+x2=25;
x1+x2+x3=50;
x1+x2+x3+x4=70;
@GIN(x1);@GIN(x2);@GIN(x3);@GIN(x4);!指定产品件数为整数;
END;
绿水人家1年前1
idmeid 共回答了18个问题 | 采纳率100%
MODEL:!改成英文状态下的冒号;
DATA:
M=1;
ENDDATA
min=(13.6+1000*M)*x1+(12.45+800*M)*x2+(12.3+800*M)*x3+(10.15+1000*M)*x4; !目标函数;!改成英文状态下的分号;
x1=10;
x1+x2=25;
x1+x2+x3=50;
x1+x2+x3+x4=70;
@GIN(x1);@GIN(x2);@GIN(x3);@GIN(x4);!指定产品件数为整数;!改成英文状态下的分号;
END;
lingo 程序出错 syntax error has occurred
lingo 程序出错 syntax error has occurred
max=4820*(1-0.1*4*a1)*297*(1+a1)*1000+320*(1-0.1*27*a2)*720*(1+a2)*1000+210(1-0.1*11*a3)(1+0.1*a4)*(1+a3)*1050*1000+70*(1-0.1*4*a4)(1+0.1*4*a3)*815*(1+a4)*1000
4820*(1-0.1*4*a1)*297*0.01*4+320*(1-0.1*27*a2)*0.01*80+210(1-0.1*11*a3)(1+0.1*a4)*0.01*35+70*(1-0.1*4*a4)(1+0.1*4*a3)*0.01*25
ghjklll1年前1
nana824 共回答了11个问题 | 采纳率90.9%
max=4820*(1-0.1*4*a1)*297*(1+a1)*1000+320*(1-0.1*27*a2)*720*(1+a2)*1000+210(1-0.1*11*a3)(1+0.1*a4)*(1+a3)*1050*1000+70*(1-0.1*4*a4)(1+0.1*4*a3)*815*(1+a4)*1000
4820*(1-0.1*4*a1)*297*0.01*4+320*(1-0.1*27*a2)*0.01*80+210(1-0.1*11*a3)(1+0.1*a4)*0.01*35+70*(1-0.1*4*a4)(1+0.1*4*a3)*0.01*25
英语翻译,这个句子好复杂啊The syntax of a language is the set of rules th
英语翻译,这个句子好复杂啊
The syntax of a language is the set of rules that governs the way in which valid statements in
that language are put together. The semantics of a statement is its meaning.
啥意思?
qq知已1年前1
乞丐酒酒 共回答了13个问题 | 采纳率92.3%
句法就是一些规则,来规范语言的组合顺序。 语义就是句子的意思。

通俗点就是,这就话怎样说,如何说就是句法在起作用。例如,你打招呼会说,“你吃饭了吗?”
而不能说“饭吃你了吗”。
能理解吧?
org.hibernate.hql.ast.QuerySyntaxException:unexpected token错
org.hibernate.hql.ast.QuerySyntaxException:unexpected token错误
public Aadmin quaryUserNames(String name) {
String sql = "select * from Eadmin a where a.Aname = ";
Query query = sessionFactory.getCurrentSession().createQuery(sql);
query.setString(0,name);
Aadmin a = (Aadmin)query.uniqueResult();
return a;
}
提示错误:org.hibernate.hql.ast.QuerySyntaxException:unexpected token:* near line 1,column 8 [select * from Eadmin a where a.Aname = ]
但上面的sql语句直接拿到数据库(oracle)中是对的,问怎么改
男色天使1年前1
美麗蝴蝶飛 共回答了15个问题 | 采纳率80%
String sql = "select * from Eadmin a where a.Aname = ";
Query query = sessionFactory.getCurrentSession().createQuery(sql);
query.setString(0,name);
sql = "select * from Eadmin a where a.Aname = "; 你这句话是标准的sql语句,但是你在这里sessionFactory.getCurrentSession().createQuery(sql);开启的是hibernate的面向对象的语句所以不可以,你改成sessionFactory.getCurrentSession().createSQL(sql);就可以了
Your request has bad syntax or is inherently impossible to s
Your request has bad syntax or is inherently impossible to satisfy.
翻译一下,该怎么解决?
la54661年前1
东盛建设yy 共回答了25个问题 | 采纳率92%
你的请求有错误或请求本身是无法满足的。 总的来说就是打不开网页,望采纳哦~
1.There are four main approaches to the study of syntax:the
1.There are four main approaches to the study of syntax:the traditional,structural,generative and functional approach.Please comment on the strengths and weaknesses of the structural approach.
2.What is your view on Chomsky’s “innateness hypothesis”?
maggiezhenglei1年前1
jianwen810 共回答了19个问题 | 采纳率84.2%
问的是传统语言学,北美结构派,生成派和功能学派的各自特征和优缺点;
语言习得的先天获得内在机制;
这些都是最基本的,在胡壮麟编的书里直接就有的原文,不再给你粘贴复制了.个学派介绍在12章,乔姆斯基先天习得机制在认知那一章.
lingo中错误代码11,Invalid input .A syntax error has occured.3] I/
lingo中错误代码11,Invalid input .A syntax error has occured.3] I/1..4/; ^ 初学者哈
model
sets:
I/1 2 3 4/;
J/1..4/:d;
link(I,J):c,x;
endsets
data:
d=60 70 120 60;
x=70 72 74 76
0 72 74 76
0 0 80 82
0 0 0 76;
min = @sum(link(i,j):c(i,j)*x(i,j));
@for(J(j):
x05 @sum(I(i)|i#LE#j:x(i,j))=d(j));
@for(I(i):
x05 @sum(J(j)|j#GE#i:x(i,j))=0;
enddata
end
不好意思哈,中间有一个位置打错了,data中定义的矩阵是对c的定义不是x,但是这不是问题的根本哈
撒米撒米1年前1
心的飞扬 共回答了15个问题 | 采纳率86.7%
model:
sets:
m/1 2 3 4/;
n/1..4/:d;
link(m,n):c,x;
endsets
data:
d=60 70 120 60;
c=70 72 74 76
0 72 74 76
0 0 80 82
0 0 0 76;
enddata
min = @sum(link(i,j):c(i,j)*x(i,j));
@for(n(j):
x05 @sum(m(i)|i#LE#j:x(i,j))=d(j));
@for(m(i):
x05 @sum(n(j)|j#GE#i:x(i,j))=0;
end
org.hibernate.hql.ast.QuerySyntaxException: expecting OPEN,
org.hibernate.hql.ast.QuerySyntaxException: expecting OPEN, found '>' near line 1, column 38 [from com.sqlt.model.Topic where count>30 and subjectid=4]
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:31)
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:24)
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:59)
at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:258)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:157)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:111)
at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:77)
at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:56)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:72)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:133)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:112)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1623)
at com.sqlt.dao.daoImp.TopicDAOImp.findTopicByFour(TopicDAOImp.java:127)
at com.sqlt.action.LoginAction.selectLiuyanInfoView(LoginAction.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)at com.opensymphony.xwork2.DefaultActionInvocation.invokeAction(DefaultActionInvocation.java:404)
at com.opensymphony.xwork2.DefaultActionInvocation.invokeActionOnly(DefaultActionInvocation.java:267)
at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:229)
at com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:221)
at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
at com.opensymphony.xwork2.util.profiling.UtilTimerStack.profile(UtilTimerStack.java:455)
at com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:221)at com.opensymphony.xwork2.validator.ValidationInterceptor.doIntercept(ValidationInterceptor.java:150)
at org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:48)
at com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:86)
at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:224)
at com.opensymphony.xwork2.DefaultActionInvocation$2.doProfiling(DefaultActionInvocation.java:223)
paint1年前1
肉肉和球球 共回答了18个问题 | 采纳率88.9%
好好检查HQL语句,语法错误
Syntax error on token "}",delete this 我查过了,没多括号,也没少括号
aimete1211年前1
ququkaikai 共回答了25个问题 | 采纳率100%
语法错了
应该是括号不匹配
或者是漏了分号什么的
你把代码贴出来看下
org.hibernate.hql.ast.QuerySyntaxException:, found '>' near
org.hibernate.hql.ast.QuerySyntaxException:, found '>' near line 1, column 39
org.hibernate.hql.ast.QuerySyntaxException: expecting OPEN, found '>' near line 1, column 39 [from com.sqlt.model.Topic where count > 30 and subjectid=4 order by id]
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:31)
at org.hibernate.hql.ast.QuerySyntaxException.convert(QuerySyntaxException.java:24)
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:59)
at org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:258)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:157)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:111)
at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:77)
at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:56)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:72)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:133)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:112)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1623)
at com.sqlt.dao.daoImp.TopicDAOImp.findTopicByFour(TopicDAOImp.java:127)
at com.sqlt.action.LoginAction.selectLiuyanInfoView(LoginAction.java:180)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.opensymphony.xwork2.DefaultActionInvocation.invokeAction(DefaultActionInvocation.java:404)
at com.opensymphony.xwork2.DefaultActionInvocation.invokeActionOnly(DefaultActionInvocation.java:267)
我的Dao类中的部分代码如下:public List findTopicByTwentyOne()
{
session=HibernateSessionFactory.getSession();
try{

ts=session.beginTransaction();
Query query=session.createQuery("from Topic where count>30 and subjectid=21 order by id");
List list=query.list();
ts.commit();
return list;

}catch(Exception e)
{
e.printStackTrace();
return null;
}
}
鸡落李维hh1年前1
xiaoling6070 共回答了19个问题 | 采纳率94.7%
你先试试你的hql有没有问题,你这样弄会很麻烦的,首先你得确定你的hql没问题才行.你的myeclipse里面有个hql 编辑工具 ,你输入你的hql查询下.
your request has bad syntax or is inherently impossible to s
your request has bad syntax or is inherently impossible to satisfy,什么意思
chxyang1年前1
日后再說 共回答了25个问题 | 采纳率92%
your request has bad syntax or is inherently impossible to satisfy
你的请求有语法错误,或为了满足。。。。在本质上是不可能的
.
很高兴为你解答!
如有不懂,请追问。 谢谢!
grammar是语法 syntax 是句法,怎么界定,最好给个例子
仙人球1年前2
daphney 共回答了9个问题 | 采纳率100%
syntax
the grammatical arrangement of words in sentences 单词在句子中的语法作用
grammar
studies of the formation of basic linguistic units 对语言学基础单元构成的研究
句法:研究的是句子的组成部分和它们的排列顺序.研究词组和句子的构成,句子成分和句子类型等内容.比如,陈述句、疑问句、倒装句等,句子成分的排列顺序、极其特点,等等.
句法,只是语法研究的一部分.
语法:研究范畴包括句法和词法 == 除上述的句法外,词法的研究范围包括词类和各类词的构成、词形变化(形态),等等.
Error (10170):Verilog HDL syntax error at ***.v(222) near te
Error (10170):Verilog HDL syntax error at ***.v(222) near text "n"; expecting ";"
assign empty_n = cnt n;
assign full_n = (cnt (max_size-n+1));
assign level = {2{cnt[aw]}} | cnt[aw-1:aw-2];
语法检查显示第一行有错误
lmxwy1年前1
伙伴你好啊 共回答了18个问题 | 采纳率94.4%
assign empty_n = cnt n;
你的cnt_n 少了下面横杠……
英语翻译Expression syntax in function main.Undefined symbol'sum'
英语翻译
Expression syntax in function main.
Undefined symbol'sum'in function main.
baby5471年前1
gs138936 共回答了22个问题 | 采纳率86.4%
最后编译里提示的错误吧?
main函数里语法错误
main函数里未定义的"sum"符号错误
第1句肯定是语法有错误
第2个应该是某个引号没写完,Turbo C里这个引号很烦人
计算机ti89计算问题计算机计算和画图时候、无法处理系数为负的方程或者指数为负种种显示syntax,再问一下计算log应
计算机ti89计算问题
计算机计算和画图时候、无法处理系数为负的方程或者指数为负种种
显示syntax,
再问一下计算log应该哪个按键,只发现了ln,还有绝对值符号...
梦中梨花雨1年前1
frnaklei 共回答了18个问题 | 采纳率88.9%
前面那个你给我个例子,我试一下.
log的话是菱形键+7.
your request has bad syntax or is inherently impossible to s
your request has bad syntax or is inherently impossible to satisfy怎么修复
gaohaigaozhihon1年前1
蒸论机 共回答了11个问题 | 采纳率81.8%
Your request has bad syntax or is inherently impossible to satisfy.
你的请求存在着糟糕的句法错误,或者请求本身不可能被满足
org.hibernate.hql.ast.QuerySyntaxException求高人指教
org.hibernate.hql.ast.QuerySyntaxException求高人指教
我执行了一条SQL
select po from com.forgon.cs.onlinepreparation.question.model.Question as po where difficultyValue = '' and typeForDisplay = '' order by dbms_random.value
然后hibernate内就抛出了异常
org.hibernate.hql.ast.QuerySyntaxException: Invalid path: 'dbms_random.value' [
应该是hibernate把dbms_random.value当成了这个表的属性所以报错,不知道有没人知道怎样做可以不用去遍历resultset而直接得到绑定到对象里的结果
helen_pk1年前1
风吹JJ毛不乱 共回答了16个问题 | 采纳率81.3%
既然你用的是HQL查询的话,那就不能用ORACLE的函数“ dbms_random.value”进行随机排序啊;个人觉得,你要实现随机排序的功能的话,不如就换成SQL查询,感觉还要方便些;
帮忙改下语法错误1.C(32):error C141:syntax error near '='1.C(36):erro
帮忙改下语法错误
1.C(32):error C141:syntax error near '='
1.C(36):error C202:'BasiKPrice1':undefined identifier
1.C(37):error C202:'BasiKPrice2':undefined identifier
1.C(38):error C202:'UnitPrice':undefined identifier
川外的好时光1年前1
移动2074 共回答了11个问题 | 采纳率100%
程序在哪?