Programmation C
Fermé
loyo34
Messages postés
43
Date d'inscription
mercredi 17 mars 2010
Statut
Membre
Dernière intervention
11 juin 2012
-
20 mars 2010 à 00:51
loyo34 Messages postés 43 Date d'inscription mercredi 17 mars 2010 Statut Membre Dernière intervention 11 juin 2012 - 20 mars 2010 à 17:28
loyo34 Messages postés 43 Date d'inscription mercredi 17 mars 2010 Statut Membre Dernière intervention 11 juin 2012 - 20 mars 2010 à 17:28
A voir également:
- Programmation C
- Application de programmation - Guide
- Programmation logo tortue télécharger - Télécharger - Études & Formations
- Problème de programmation digicode extel klavy 3 ✓ - Forum Loisirs / Divertissements
- Programmation carte à puce vierge ✓ - Forum Matériel & Système
- Programmation binaire - Guide
3 réponses
fiddy
Messages postés
11069
Date d'inscription
samedi 5 mai 2007
Statut
Contributeur
Dernière intervention
23 avril 2022
1 843
20 mars 2010 à 00:56
20 mars 2010 à 00:56
Bonjour,
Je vous conseille d'aller jeter un tour sur : https://openclassrooms.com/fr/courses/19980-apprenez-a-programmer-en-c
En attendant voici ce qui cloche dans votre programme :
Cdlt,
Je vous conseille d'aller jeter un tour sur : https://openclassrooms.com/fr/courses/19980-apprenez-a-programmer-en-c
En attendant voici ce qui cloche dans votre programme :
#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int nombre = 0; printf("Entre un nombre"); scanf("%d", &nombre); /*modification*/ printf("%d", nombre); /*modification*/ system("pause"); /*modification*/ return 0; }
Cdlt,
$ Enzo $
Messages postés
333
Date d'inscription
jeudi 19 février 2009
Statut
Membre
Dernière intervention
9 janvier 2011
61
20 mars 2010 à 00:58
20 mars 2010 à 00:58
Salut, t'en fais pas, il faut juste mettre un esperluette (&) devant le nom de ta variable dans le scanf();
scanf("%d", &nombre);
scanf("%d", &nombre);
loyo34
Messages postés
43
Date d'inscription
mercredi 17 mars 2010
Statut
Membre
Dernière intervention
11 juin 2012
20 mars 2010 à 17:28
20 mars 2010 à 17:28
Merci pour vos réponse sa m'a beaucoup aidé