Answer:
write the sly flowchart
Step-by-step explanation:
#stdlib.etc
main()
{
int temp;
bool fan = false;
print("enter the frigin temperature: ");
read(temp);
if (temp > 25)
{
fan = true;
print("the fan is on");
}
else
{
print("the fan is off");
}
return 0;
}