theshockwave I work at a firm named Koslow | Code :
- #include <stdio.h>
- #define MAX 200
- void inverser(char phrase[],int max)
- {
- int i, m = max<<1
- ;
- for (i=0 ; i<=m ; i++) {
- char tmp = phrase[i];
- phrase[i] = phrase[max-i];
- phrase[max-i] = tmp;
- }
- }
- void main()
- {
- int i=0, max;
- char texte[MAX];
- printf("Entrez une phrase : " );
- do {
- texte[i]=getch();
- if (texte[i]!='\n')
- printf("%c",texte[i]);
- i++;
- } while ((i<MAX) && (texte[i]!='\n'));
- if (i>=MAX)
- i--;
- texte[i] = '\0';
- max = i-1;
- inverser(texte,max);
- printf("\n\n\n\n%s",texte);
- getch();
- }
|
quelqu'un peut commenter mon code, je suis pas sur qu'il soit ok .... ( euuuh ... j'ai pas testé non plus, hein ... j'ai p't'être laissé des erreurs, sérieusement ! ) Message édité par theshockwave le 27-05-2003 à 23:00:42 ---------------
last.fm
|