5 réponses
Galsungen
Messages postés
6938
Date d'inscription
vendredi 5 mars 2004
Statut
Contributeur
Dernière intervention
18 novembre 2007
1 422
13 mai 2004 à 08:33
13 mai 2004 à 08:33
oui mais encore ? quelle est ta question ?
Gals - Nibelungen
Gals - Nibelungen
VOILA JE VEUX APPRENDRE LE C++ . ALORS G START PAR CE QUE VEUX LA COUTUME, G TAPE LES INSTRUCTIONS SUIVANTES :
#include <iostream>
int main()
{
cout << "Hello World" << endl;
return 0;
}
ET LORSQUE JE LE COMPILE IL TROUVE 70 ERREURS.
G RI1 COMPRIS
MERCI PR VOTRE AIDE
#include <iostream>
int main()
{
cout << "Hello World" << endl;
return 0;
}
ET LORSQUE JE LE COMPILE IL TROUVE 70 ERREURS.
G RI1 COMPRIS
MERCI PR VOTRE AIDE
sebsauvage
Messages postés
32893
Date d'inscription
mercredi 29 août 2001
Statut
Modérateur
Dernière intervention
21 octobre 2019
15 659
13 mai 2004 à 09:58
13 mai 2004 à 09:58
Trouvé sur Google:
Je ne l'ai pas testé.
J'espère que ça t'aidera.
// File name: HelloWorld.cpp // Purpose: A simple C++ program which prints "Hello World!" on the screen #include <iostream> // need this header file to support the C++ I/O system using namespace std; // telling the compiler to use namespace "std", // where the entire C++ library is declared. int main() { // Print out a sentence on the screen. // "<<" causes the expression on its right to // be directed to the device on its left. // "cout" is the standard output device -- the screen. cout << "Hello World!" << endl; return 0; // returns 0,which indicate the successful // termination of the "main" function }
Je ne l'ai pas testé.
J'espère que ça t'aidera.
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question