Ajout première partie

This commit is contained in:
Rick 2020-12-14 17:03:37 +01:00
parent 3b8ae68e9b
commit 20bcceee45
Signed by: Rick
GPG key ID: 9570A7DB7CB2F436
2 changed files with 2241 additions and 0 deletions

2199
jour6/input Normal file

File diff suppressed because it is too large Load diff

42
jour6/main.c Normal file
View file

@ -0,0 +1,42 @@
#include <stdio.h>
//#include <stdlib.h>
//#include <ctype.h>
#include <string.h>
#include "utils.h"
void prem_partie(FILE *ptr)
{
int total = 0, find = 0;
char actLine[30], findChar[26], empty[26];
char tmp;
fscanf(ptr, "%s", actLine);
while (!feof(ptr))
{
for (int i = 0; i < strlen(actLine); i++)
{
tmp = actLine[i];
if (strchr(findChar, actLine[i]) == NULL)
{
find++;
strncat(findChar, &tmp, 1);
}
}
if (check_void_line(ptr))
{
total += find;
find = 0;
strcpy(findChar, empty);
}
fscanf(ptr, "%s", actLine);
}
printf("La somme de toutes les réponses est : %d.\n", total);
}
void deux_partie(FILE *ptr)
{
int i;
}