1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
| #include <stdio.h>
#include <stdlib.h>
#include <string.h>
static void fclean(char *buffer, FILE *fp);
static long get_long(char const *msg, int *err);
static unsigned long get_ulong(char const *msg, int *err);
int main(void)
{
size_t size;
int *t = NULL;;
int err , j,i , somme ;
int ret = 0;
do
{
size = get_ulong("Entrer Le nombre de valeurs de votre suite:", &err);
}
while (err != 0);
t = malloc(size * sizeof *t);
if (t != NULL)
{
size_t i;
for (i = 0; i < size; i++)
{
do
{
printf("Donnez le nombre numero %d de votre suite\n" , i+1);
t[i] = get_long(NULL, &err);
}
while (err != 0);
}
for (i = 0; i < size; i++)
{
printf("la valeur numero %d de la suite est %d\n", i+1, t[i]);
}
}
else
{
printf("Memoire insuffisante.\n");
ret = EXIT_FAILURE;
}
for ( i = size ; i > 0 ; i-- ) /*lecture a l'envers du tableau */
{
for ( j = i-1 ; j>0 ; j-- ) /* somme de tous les i-1 */
{
somme = somme + t[j] ;
}
if (t[i] > somme )
{
printf("ok\n") ;
}
else
{
printf("erreur\n") ;
}
}
return ret ;
}
static void
fclean(char *buffer, FILE *fp)
{
if (buffer != NULL && fp != NULL)
{
char *pc = strchr(buffer, '\n');
if (pc != NULL)
{
*pc = 0;
}
else
{
int c;
while ((c = fgetc(fp)) != '\n' && c != EOF)
{
}
}
}
}
static long
get_long(char const *msg, int *err)
{
long ret = 0;
char buffer[16] = "";
char *pend = NULL;
if (err != NULL)
{
*err = 0;
}
if (msg != NULL)
{
printf("%s ", msg);
fflush(stdout);
}
fgets(buffer, sizeof buffer, stdin);
fclean(buffer, stdin);
ret = strtoul(buffer, &pend, 0);
if (*pend != 0 && err != NULL)
{
*err = 1;
}
return ret;
}
static unsigned long
get_ulong(char const *msg, int *err)
{
unsigned long ret = 0;
char buffer[16] = "";
char *pend = NULL;
if (err != NULL)
{
*err = 0;
}
if (msg != NULL)
{
printf("%s ", msg);
fflush(stdout);
}
fgets(buffer, sizeof buffer, stdin);
fclean(buffer, stdin);
ret = strtoul(buffer, &pend, 0);
if (*pend != 0 && err != NULL)
{
*err = 1;
}
return ret;
} |
Partager