Type mismatch: cannot convert from double to int

 

이런 에러가 뜨구요

 

 

   public void onClick(View v) {                                                                                                      
    EditText textHeight = (EditText) findViewById(R.id.text_height);
    EditText textWeight = (EditText) findViewById(R.id.text_weight);
    int height = Integer.parseInt(textHeight.getText().toString());
    int weight = Integer.parseInt(textWeight.getText().toString());
    int bmi = 10000 * weight / height / height;
    int water = weight * 0.033;

    int kcd = weight * 0.95 * 24;

 

요건 에러 관련소스입니다.

 

밑줄이 에러가 뜨는데

 

왜이런건지 정말 답답하네요 ㅠㅠ

 

이 에러만 없으면 금방 끝낼수 있는데..

 

도와주세요 ㅠㅠ