摘要:
第一题: package com.hp.www; public class Demo2 { public static void main(String[] args) { String s = "Hello-World"; System.out.println("是否相等,-"+s.equals( 阅读全文
摘要:
第一题: 看程序说答案 int a = 10; int b = 3; int c = a + b;c=13 int d = a - b;d=7 int e = a * b; e=30 int f = a / b; f=3 int g = a % b;g=1 a++; 11 ++a;12 b--;2 阅读全文