工号9527是我终身编号
2016-08-19 19:38
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
int three=one+two==>30;
int three+=one==>40;
int three-=one==>30;
int three*+one==>300;
int three/=one==>30;
int three%/==>0
应用运算符实现:
int three=one+two==>30;
int three+=one==>40;
int three-=one==>30;
int three*+one==>300;
int three/=one==>30;
int three%/==>0
我很奇怪,总感觉不对。但是已经同过了测试题到底是什么回事?
同学,==》不是运算符,它是提形象化的指示符号,应该写在“ ”里面
这段代码应该这样写
方便请采纳
该节编程练习不验证代码,要看输出里面有没有错误
Java入门第一季(IDEA工具)升级版
1165628 学习 · 17587 问题
相似问题