#include <stdio.h>

typedef struct {
    double totalDist;
    double trackLen;
    int result;
} Student;

int main() {

    Student std = {1250.0,250.0};
    std.result = std.totalDist / std.trackLen;
    printf("운동장을 돈 횟수: %d",std.result);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: