How to solve: error: expected constructor, destructor, or type conversion

hello! i am working on a project and i am met with the above error upon trying to send the code to my arduino board, is anyone able to help? This is my code:

#include<DHT.h>

#include <LiquidCrystal.h>

dht (A0, DHT11);

int Temp;

int humidity;

liquidcrystal_I2C lcd (0x3F, 16, 1);

void setup() {

dth.begin();

lcd.init();

lcd.backlight();

}

void loop () {

delay(1000);

Temp = dht.readTemperature

Humidity = dht.readHumidity

lcd.setCursor (0, 0);

//above 0 0 means first line and column for the text to show up on

lcd.print ("Temperature: ");

lcd.print (temp);

lcd.print (" C");

lcd.setCursor (0, 1);

// this means the same column but the line below the other one

lcd.print ("Humidity: ");

lcd.print (humidity);

lcd.print (" %");

}

Welcome to the forum

Please follow the advice given in the link below when posting code, in particular the section entitled 'Posting code and common code problems'

Use code tags (the < CODE/ > icon above the compose window) to make it easier to read and copy for examination

Temp = dht.readTemperature

Humidity = dht.readHumidity

These lines, and possibly others, are missing their terminating semicolon and if they are function calls they are also missing the required parentheses needed for a function call

I am so sorry. in the future I will use the given code tags.

I assume that you have fixed the problems with your code. If so, please post the working sketch in a new reply to this topic, using code tags when you post it