Fin du TP
This commit is contained in:
parent
cc0be1fd98
commit
614213fed0
@ -38,7 +38,7 @@ int main(void) {
|
|||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
3.
|
3.
|
||||||
|
|
||||||
@ -51,18 +51,137 @@ int main(void) {
|
|||||||
printf("Veuillez entrer un réel : ");
|
printf("Veuillez entrer un réel : ");
|
||||||
scanf("%lf", &n);
|
scanf("%lf", &n);
|
||||||
getchar();
|
getchar();
|
||||||
printf("Veuillez entrer un réel : ");
|
printf("Veuillez entrer un autre réel : ");
|
||||||
scanf("%lf", &x);
|
scanf("%lf", &x);
|
||||||
getchar();
|
getchar();
|
||||||
/* TO DO */
|
if (x < 0 && n < 0) {
|
||||||
printf("\n %d \n", n);
|
printf("\nPositif\n");
|
||||||
}
|
}
|
||||||
else if((n%3) == 1){
|
else if (x < 0) {
|
||||||
printf("\n %d \n", n-1);
|
printf("\nNégatif\n");
|
||||||
}
|
}
|
||||||
|
else if (n < 0) {
|
||||||
|
printf("\nNégatif\n");
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
printf("\n %d \n", n+1);
|
printf("\nPositif\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
4.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# include <stdio.h>
|
||||||
|
# include <stdlib.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int n;
|
||||||
|
int x;
|
||||||
|
int y;
|
||||||
|
printf("Veuillez entrer un entier : ");
|
||||||
|
scanf("%d", &n);
|
||||||
|
getchar();
|
||||||
|
printf("Veuillez entrer un autre entier : ");
|
||||||
|
scanf("%d", &x);
|
||||||
|
getchar();
|
||||||
|
printf("Veuillez entrer un autre entier : ");
|
||||||
|
scanf("%d", &y);
|
||||||
|
getchar();
|
||||||
|
if (x < n) {
|
||||||
|
if (x < y) {
|
||||||
|
printf("\n%d < ", x);
|
||||||
|
if (y < n) {
|
||||||
|
printf("%d < %d\n", y, n);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("%d < %d\n", n, y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("\n%d < %d < %d\n", y, x, n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (n < x) {
|
||||||
|
if (n < y) {
|
||||||
|
printf("\n%d < ", n);
|
||||||
|
if (x < y) {
|
||||||
|
printf("%d < %d\n", x, y);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("%d < %d\n", y, x);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("\n%d < %d < %d\n", y, n, x);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
5.
|
||||||
|
|
||||||
|
# include <stdio.h>
|
||||||
|
# include <stdlib.h>
|
||||||
|
|
||||||
|
/* VERSION 1 */
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int annee;
|
||||||
|
annee = 2000;
|
||||||
|
if (annee % 400 == 0) {
|
||||||
|
printf("C'est une année bissextile");
|
||||||
|
}
|
||||||
|
else if (annee % 4 == 0) {
|
||||||
|
if (annee % 100 != 0) {
|
||||||
|
printf("C'est une année bissextile");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("Ce n'est pas une année bissextile");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("Ce n'est pas une année bissextile");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|
# include <stdio.h>
|
||||||
|
# include <stdlib.h>
|
||||||
|
|
||||||
|
/* VERSION 1 */
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int annee;
|
||||||
|
annee = 2024;
|
||||||
|
if ((annee % 4 == 0 && annee % 100 != 0) || annee % 400 == 0) {
|
||||||
|
printf("C'est une année bissextile");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("Ce n'est pas une année bissextile");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -1,24 +1,18 @@
|
|||||||
# include <stdio.h>
|
# include <stdio.h>
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
|
|
||||||
|
/* VERSION 1 */
|
||||||
|
|
||||||
int main(void) {
|
int main(void) {
|
||||||
double n;
|
int annee;
|
||||||
double x;
|
annee = 2024;
|
||||||
printf("Veuillez entrer un réel : ");
|
if ((annee % 4 == 0 && annee % 100 != 0) || annee % 400 == 0) {
|
||||||
scanf("%lf", &n);
|
printf("C'est une année bissextile");
|
||||||
getchar();
|
}
|
||||||
printf("Veuillez entrer un réel : ");
|
|
||||||
scanf("%lf", &x);
|
|
||||||
getchar();
|
|
||||||
/* TO DO */
|
|
||||||
printf("\n %d \n", n);
|
|
||||||
}
|
|
||||||
else if((n%3) == 1){
|
|
||||||
printf("\n %d \n", n-1);
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
printf("\n %d \n", n+1);
|
printf("Ce n'est pas une année bissextile");
|
||||||
}
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user