符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
public static void main(String[] args) {
创新互联凭借在网站建设、网站推广领域领先的技术能力和多年的行业经验,为客户提供超值的营销型网站建设服务,我们始终认为:好的营销型网站就是好的业务员。我们已成功为企业单位、个人等客户提供了网站制作、做网站服务,以良好的商业信誉,完善的服务及深厚的技术力量处于同行领先地位。
int child_age = 1;
int father_age;
while(true) {
father_age = 3 * child_age;
int child_age_future = child_age + 20;
int father_age_future = father_age + 20;
if(child_age_future * 2 == father_age_future) {
break;
}else{
child_age++;
}
}
System.out.println("小明的年龄是" + child_age + "岁");
System.out.println("小明爸爸的年龄是" + father_age + "岁");
}
可以用循环啊,定义类person
Class person{
@Getter
@Setter
private int age;
@Getter
@Setter
private String name;
public person(int age,String name){
this.age=age;
this.name=name.
}
}
判断年龄就用数组做了,假设你放一个ArrayList里
ArrayListPerson personList=new ArrayList();
personList.add(父亲)
personList.add(爷爷)
personList.add(儿子)
for(Person person:personList){
if (person.getage90){
game over
}else if(person.getage0){
洗洗睡吧
}else{
打印名字和年龄 getname()+getage()
}
}
计算全班同学年龄之和。
思路:从键盘上依次输入每个同学的年龄,然后求和输出:
import java.util.Scanner;
public class TestMain {
public static void main(String[] args) {
int sum=0;
Scanner in =new Scanner(System.in);
int n = in.nextInt();
sum+=n;
System.out.println(sum);
}
}
public class MyDate {
private int day = 14;
private int month = 4;
private int year = 2007;
public MyDate(int x,int y,int z)
{
}
public int getAge(int D, int M, int Y){
this.day=day-D;
this.month=month-M;
this.year=year-Y;
return (day+month+year);
}
public String toString()//这里是有返回类型的方法,下面调用语句不对,且方法最后没有return语句
{
System.out.println("本人年龄:"+this.day+this.month+this.year);
}
}
}//多了半个括号
public class TestMyData {
public static void main(String[] args) {
System.out.println("runing main()");
MyDate today = new MyDate(29, 8, 1984);
today.toString();//此方法有返回值,不是这样调用的
}
}