已采纳回答 / 北城殇歌
public class Exerc17 {public static void main(String[] args){int score=94;String sex="女";if(score>80){if(sex.equals("女")){System.out.println("进入女子决赛");}else if(sex.equals("男")){System.out.println("进入男子决赛");}else{System.out.println("输入错误");}}else{System...
2016-04-21
已采纳回答 / soicor
System.out.println("three+=one==>"+(three+=one));//three=30+10=40 System.out.println("three-=one==>"+(three-=one));//three=40-10=30 System.out.println("three*=one==>"+(three*=one));//three=30*10=300 System.out.println("three/=one==>"+(three/...
2016-04-20
最新回答 / LyonUp
+号是java语言的字符串拼接功能例如: int a =3 ; String b ="abc";System.out.println(a+b);也就是把 a的字符串值加到b字符串值的后面 拼接成新的 abc3
2016-04-20
最新回答 / 慕移动9181930
因为,checkScrollSlide被javascript识别为未定义的变量(undefined),而bool(undefined)等于true.规范的写法是第一个单词的首字母小写,以后的单词首字母大写。onMouseOver规范一点。
2016-04-20