Estou com esse erro, já deu em duas complações o mesmo problema;
Segue o codigo.
#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
float celsius;
float fahrenheit;
celsius = 25;
fahrenheit = celsius*1.8 + 32;
cout<<celsius<<" graus Celsius equivale a "<<fahrenheit<<" graus Fahrenheit.";
}
12 2 C:\Users\Leandro\Desktop\Sistema de Informação\Projeto 2\main.cpp [Error] 'cout' was not declared in this scope