remove decimals when printing DHT.temperature on lcd screen

hi!

I am really new to arduino, i'm not even sure if i'm posting in the right forum. However..
Im working on a projekt where i want to see the temperature and humidity on a lcd screen with a DHT11 sensor. Its all working fine, but the temperature is showing decimals, and I just want the number. example: It says "T: 21.00C" i want it to say "T: 21C"
Grateful for your advice. Really looking forward to learn a lot!

temp.ino (421 Bytes)

Please read How to use the forum for next time and post your code inline (in code-tags).

But to answer the question

lcd.print(DHT.temperatur, 0)

septillion:
Please read How to use the forum for next time and post your code inline (in code-tags).

But to answer the question

lcd.print(DHT.temperatur, 0)

Okey I will do that in the future, it works perfect!
thank you very much!!