翻译一下 int score = 60; if(x>100&&y>500) score=score+1; if(x>=1000||z>5000) score=score+5;
2个回答
展开全部
int score = 60;为整型变量score赋值60,此时score=60
if(x>100&&y>500) score=score+1;判断,如果满足x>100并且y>500;变量score+1,则score=60+1(j即=61)
if(x>=1000||z>5000) score=score+5;判断,如果满足x>1000或者y>5000;变量score+5,则score=60+5(即=65)
if(x>100&&y>500) score=score+1;判断,如果满足x>100并且y>500;变量score+1,则score=60+1(j即=61)
if(x>=1000||z>5000) score=score+5;判断,如果满足x>1000或者y>5000;变量score+5,则score=60+5(即=65)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询