diff --git a/t2.c b/t2.c new file mode 100644 index 0000000..835181f --- /dev/null +++ b/t2.c @@ -0,0 +1,25 @@ +#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