Answer:
cin>>temperature;
Step-by-step explanation:
This statement in c++ will take the input.The value entered by the user on the screen will be stored in the variable temperature. cin is an standard input method in c++ and is used take input from the screen. It is an object of istream class that is standard input stream .It corresponds to C stream stdin.