YES, sure!
At least it inserted incorrectly. Read the forum guidelines to see how to properly insert the code and some other good information on making a good post.
Yes, everything is wrong.
First, you should specify what is the problem from your point of view (what that code should do and what doesn't).
Second, you must edit your first post to enclose the whole code inside the "code tags" (see the button "<CODE/>" on the top button bar of the editor).
After you'll do those changes, we can say something to you.
Not finding this (following) on the spec sheet, but from the internet:
"...One of the downsides of the [Texas Instruments LM35] is that it requires a negative bias voltage to read negative temperatures... The TMP36 by Analog Devices is very similar to the LM35 and can read temperatures from -40°C to 125°C without any external components..."
The sketch will yield these extremes...
Temperature: 0.00 C 32.00 F (at 0)
Temperature: 499.51 C 931.12 F (at 1023)
as it is written:
int reading = analogRead(lm35);
float voltage = reading * (5.0 / 1024.0);
float temperatureC = voltage * 100;
float temperatureF = (temperatureC * 9.0 / 5.0) + 32.0;
But should yield the LM35 extremes of
Temperature: -55.00 C -67.00 F (at 0)
Temperature: 150 C 302 F (at 1023)
Since OP has not been heard from since it started, and has not even corrected his first post as requested by the forum rules, I think it is useless to continue this topic.