A voir également:
- Besoin d'aide pour exo en c
- Exo pix - Forum Excel
- Comment ouvrir un fichier exo? - Forum Programmation
- Problème avec mon exo codage language C - Forum C
- Blocage sur un exo ✓ - Forum Programmation
- Exo algo 3 - Forum Programmation
2 réponses
lami20j
Messages postés
21331
Date d'inscription
jeudi 4 novembre 2004
Statut
Modérateur, Contributeur sécurité
Dernière intervention
30 octobre 2019
3 569
8 déc. 2007 à 00:00
8 déc. 2007 à 00:00
Salut,
essaie ça
essaie ça
#include<stdio.h> #define DEDANS 1 #define DEHORS 0 int main () { int c, test; test = DEHORS; while((c=getchar()) != EOF){ if(c==' ' || c == '\t' || c == '\n') test = DEHORS; else if(test == DEHORS){ test = DEDANS; printf("%c",toupper(c)); } } return 0; }
8 déc. 2007 à 08:49