The first one to ask the stupidest question of all... *sigh* Look! What on Earth could I have done wrong?!
This is getting annoying.
~ >:C
If you don't see new code now:
Else go to the right bottom.
package com.codegym.task.task05.task0515;
/*
Initializing objects
*/
public class Person {
String name;
char sex;
int money;
int age;
double popularity;
public void initialize(String name, int money, int age, double popularity, char sex) {
this.name = name;
this.money = money;
this.sex = sex;
this.age = age;
this.popularity = popularity;
}
public static void main(String[] args) {
}
}
package com.codegym.task.task05.task0515;
/*
Initializing objects
*/
public class Person {
String name;
char sex;
int money;
int weight;
double size;
public void initialize(String name, int money, int age, int popularity, char sex) {
this.name = name;
this.money = money;
this.sex = sex;
this.age = age;
this.popularity = popularity;
}
public static void main(String[] args) {
}
}