public class HelloWorld{
public static void main(String[] args) {
String city=("河南");
System.out.println("我的家乡在:"+city);
}
}
public static void main(String[] args) {
String city=("河南");
System.out.println("我的家乡在:"+city);
}
}
2015-07-17
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one+two;//30
three += one;//40
three -= one;//30
three *= one;//300
three /= one;//30
three %= one;//0
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one+two;//30
three += one;//40
three -= one;//30
three *= one;//300
three /= one;//30
three %= one;//0
2015-07-17
if(age<18)
System.out.println("童年");
else if(age>=18&&age<40)
System.out.println("少年");
else if(age>=40&&age<60)
System.out.println("中年");
else if (age>=60)
System.out.println("老年");
}
}
System.out.println("童年");
else if(age>=18&&age<40)
System.out.println("少年");
else if(age>=40&&age<60)
System.out.println("中年");
else if (age>=60)
System.out.println("老年");
}
}
2015-07-17