[c++][noob]convertif un int en char et l ' ajouter a un autre char !

convertif un int en char et l ' ajouter a un autre char ! [c++][noob] - C++ - Programmation

Marsh Posté le 30-03-2003 à 19:09:57    

Salut a tous
voila je voudrais faire un programme :  
un char = 'toto'
une bouche for  
for (int a = 0 ;a<15;a++)
et dans le for je voudrais afficher en console toto + la valeur de a a la suite de toto
 
 
toto0
toto1
toto2
.....
toto14
 
mais je voudrait ke toto+a souit compris dans une seul variable pas 2, juste une variable char  
 
 
merci


Message édité par CtHuLhU50 le 30-03-2003 à 19:11:02
Reply

Marsh Posté le 30-03-2003 à 19:09:57   

Reply

Marsh Posté le 30-03-2003 à 19:15:47    

CtHuLhU50 a écrit :

Salut a tous
voila je voudrais faire un programme :  
un char = 'toto'
une bouche for  
for (int a = 0 ;a<15;a++)
et dans le for je voudrais afficher en console toto + la valeur de a a la suite de toto
 
 
toto0
toto1
toto2
.....
toto14
 
mais je voudrait ke toto+a souit compris dans une seul variable pas 2, juste une variable char  
 
 
merci


 
attention char = 'toto' ca peut pas marcher....
 
Voici ce que j'aurai fait, y'a surement mieux, mais ca doit marcher...
 

Code :
  1. char chaine[] = "toto";
  2. char chain_affich[10];
  3. for (int a = 0 ;a<15;a++){
  4.    sprintf(chain_affich, "%s%d", chaine, a);
  5.    cout << chain_affich;
  6. }


 

Reply

Marsh Posté le 30-03-2003 à 19:25:25    

ok merciii bcq, nikel !

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed