From ad0ced08ed03274be8eba440014c4430b0a1eb41 Mon Sep 17 00:00:00 2001 From: p62jhspgx <2736273201@qq.com> Date: Mon, 13 Nov 2023 21:18:54 +0800 Subject: [PATCH] Delete 't2.c' --- t2.c | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 t2.c diff --git a/t2.c b/t2.c deleted file mode 100644 index 835181f..0000000 --- a/t2.c +++ /dev/null @@ -1,25 +0,0 @@ -#include -typedef struct INFO -{ - int num; - float Maths; - float Physics; - float English; -}Info; -Info stu[3]; -void info(); -int main() -{ - info(); -} -void info() -{ - for (int i = 0; i < 3; i++) - { - scanf("%d%f%f%f", &stu[i].num, &stu[i].Maths, &stu[i].Physics, &stu[i].English); - } - for (int i = 0; i < 3; i++) - { - printf("%d %.1f %.1f %.1f\n", stu[i].num, stu[i].Maths, stu[i].Physics, stu[i].English); - } -} \ No newline at end of file