1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00

【额外练习】选择结构

This commit is contained in:
Baoshuo Ren 2024-10-31 16:45:40 +08:00
parent ddd64d9607
commit c1c14e733f
Failed to extract signature
5 changed files with 124 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
if (a > b) {
int temp = a;
a = b;
b = temp;
}
if (a > c) {
int temp = a;
a = c;
c = temp;
}
if (b > c) {
int temp = b;
b = c;
c = temp;
}
printf("%d %d %d\n", a, b, c);
return 0;
}

View File

@ -0,0 +1,19 @@
#include <stdio.h>
int main() {
char c;
scanf("%c", &c);
if (c >= 'a' && c <= 'z') {
c += 3;
if (c > 'z') c -= 26;
} else if (c >= 'A' && c <= 'Z') {
c += 3;
if (c > 'Z') c -= 26;
}
printf("%c\n", c);
return 0;
}

View File

@ -0,0 +1,27 @@
#include <stdio.h>
int main() {
double a, b, c;
scanf("%lf%lf%lf", &a, &b, &c);
if (a == 0) {
if (b == 0 && c != 0) {
printf("0\n");
} else {
printf("1\n");
}
} else {
double delta = b * b - 4 * a * c;
if (delta > 0) {
printf("2\n");
} else if (delta == 0) {
printf("1\n");
} else {
printf("0\n");
}
}
return 0;
}

View File

@ -0,0 +1,26 @@
#include <math.h>
#include <stdio.h>
int main() {
double a, b, c, r;
scanf("%lf%lf%lf%lf", &a, &b, &c, &r);
double s = (a + b + c) / 2.0;
if (s <= a || s <= b || s <= c) {
printf("No\n");
return 0;
}
double area = sqrt(s * (s - a) * (s - b) * (s - c));
double inRadius = area / s;
if (r <= inRadius) {
printf("Yes\n");
} else {
printf("No\n");
}
return 0;
}

View File

@ -0,0 +1,23 @@
#include <stdio.h>
int main() {
int t;
scanf("%d", &t);
if (t >= 90 && t <= 100) {
printf("A\n");
} else if (t >= 80 && t <= 89) {
printf("B\n");
} else if (t >= 70 && t <= 79) {
printf("C\n");
} else if (t >= 60 && t <= 69) {
printf("D\n");
} else if (t >= 0 && t <= 59) {
printf("E\n");
} else {
printf("Score is error!\n");
}
return 0;
}