Salut all
je débute dans le C++ et j'ai codé cette source:
#include <iostream.h>
void affichettc(float HT)
{
float TTC = HT * 1.206;
cout << "Le montant TTC de " << HT;
}
avec DevC++ mais quand je l'éxécute j'obtient :
1 C:\Dev-Cpp\include\c++\3.3.1\backward\iostream.h:31, from C:\Documents and Settings\Propriétaire\Bureau\tva.cpp In file included from C:/Dev-Cpp/include/c++/3.3.1/backward/iostream.h:31, from C:/Documents and Settings/Propriétaire/Bureau/tva.cpp
------------------------------------------------------------------------------------
2 C:\Dev-Cpp\include\c++\3.3.1\backward\backward_warning.h:32 #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.
comment corriger ceci svp ?

ArNo