[C++] AIDEZ MOI

Fermé
Utilisateur anonyme - 13 mai 2004 à 07:36
 Pink Vador - 20 mai 2004 à 11:09
SALUT

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
oui mais encore ? quelle est ta question ?

Gals - Nibelungen
0
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
0
Bonjour abdel,
il fau que tu fasse std::cout et std::endl.
cout et endl font partie de l'espace de nom standard (std). Si tu ne veux pas taper à chaque fois std::cout et std::endl taper
#include<ilostream>
using namespace std;
et ton prgm marchera

salut
0
abdel > P-Lin
19 mai 2004 à 23:55
MERCI
0
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
Trouvé sur Google:

// 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.
0
Utilisateur anonyme
13 mai 2004 à 10:02
MERCI. JE V LE TESTER .
JE T'EN DIRAI D NVLS.

@+
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Dans le mondes des forums
Ecrire en majuscule = crier
Et on va croire que tu est en colére...
0