if(age>=18){
System.out.println("成年");
}
else{
System.out.println("未成年");
}
System.out.println("成年");
}
else{
System.out.println("未成年");
}
2014-12-14
int one = 10 ;
int two = 20 ;
int three = 0 ;
int three=one+two;
int three+=one;
int three-=one;
int three*=one;
double three/=one;
int three%=one;
System.out.println(threee);
int two = 20 ;
int three = 0 ;
int three=one+two;
int three+=one;
int three-=one;
int three*=one;
double three/=one;
int three%=one;
System.out.println(threee);
2014-12-13
public class HelloWorld{
public static void main(String[] args) {
final char LIN='男';
final char WEN='女';
System.out.println(LIN);
System.out.println(WEN);
}
}
public static void main(String[] args) {
final char LIN='男';
final char WEN='女';
System.out.println(LIN);
System.out.println(WEN);
}
}
2014-12-13