This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
int showChar(char c) { | |
switch (c) { | |
case '!'...'~': | |
fprintf(stderr, "'%c ", c); | |
break; | |
case 0: | |
fprintf(stderr, "\\0 "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************************\ | |
* Programme réalisant des calculs du second degré. * | |
* Réaliser par: Thomas Bastin * | |
* Le 31/01/2018 * | |
\**************************************************/ | |
#include <iostream> | |
#include <math.h> | |
#include <string> | |
#include <cctype> |