fork download
  1. #include <math.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <sys/stat.h>
  6. #include <time.h>
  7.  
  8. #define M_PI 3.14159265359
  9. #define DISTRICT_NUM 50
  10.  
  11. struct location{
  12. char name[100];
  13. double lats;
  14. double longs;
  15. };
  16.  
  17. char username[50];
  18.  
  19. char* get_current_time() {
  20. static char time_string[50];
  21. time_t current_time;
  22. struct tm *time_info;
  23.  
  24. time(&current_time);
  25. time_info = localtime(&current_time);
  26. strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", time_info);
  27.  
  28. return time_string;
  29. }
  30.  
  31.  
  32. double calculateDistance(double lat1, double lon1, double lat2, double lon2) {
  33. double R = 6371.0;
  34. double dlat = (lat2 - lat1) * M_PI / 180.0;
  35. double dlon = (lon2 - lon1) * M_PI / 180.0;
  36. double a = sin(dlat/2) * sin(dlat/2) + cos(lat1 * M_PI / 180.0) * cos(lat2 * M_PI / 180.0) * sin(dlon/2) * sin(dlon/2);
  37. double c = 2 * atan2(sqrt(a), sqrt(1-a));
  38. double d = R * c;
  39. return d;
  40. }
  41.  
  42. double calculateMoney(double km){
  43. double money = 35;
  44. if(km < 1) return 0;
  45. if(km > 80){
  46. money += (km - 80) * 10.50;
  47. km = 80;
  48. }
  49. if(km > 60){
  50. money += (km - 60) * 9.0;
  51. km = 60;
  52. }
  53. if(km > 40){
  54. money += (km - 40) * 8.5;
  55. km = 40;
  56. }
  57. if(km > 20){
  58. money += (km - 20) * 8;
  59. km = 20;
  60. }
  61. if(km > 10){
  62. money += (km - 10) * 7;
  63. km = 10;
  64. }
  65. km -= 1;
  66. money += km * 6.5;
  67.  
  68. return money;
  69.  
  70. }
  71.  
  72. void loadData(int mode , struct location *loc_arr){
  73. FILE *fp;
  74. char str[100];
  75. if(mode == 0)fp = fopen("district.txt", "r");
  76. else if (mode == 1)fp = fopen("lats.txt", "r");
  77. else if (mode == 2)fp = fopen("longs.txt", "r");
  78. if (fp == NULL) {
  79. printf("Error opening the file!\n");
  80. return;
  81. }
  82. int i = 0;
  83. while (fgets(str, sizeof(str), fp) != NULL) {
  84. if(mode == 0){
  85. strcpy(loc_arr[i].name , strtok(str , "\n"));
  86. }else{
  87. char *eptr;
  88. double data = strtod(str , &eptr);
  89. if(mode == 1)loc_arr[i].lats = data;
  90. if(mode == 2)loc_arr[i].longs = data;
  91. }
  92. i++;
  93. }
  94. fclose(fp);
  95. }
  96.  
  97. void printTitle(){
  98. system("cls");
  99. printf("\033[0;33m=======================================================\n");
  100. printf("\033[0;31m _____ _ _ _ _ \n");
  101. printf("\033[0;31m |__ __| | | \\/ | | | \n");
  102. printf("\033[0;32m | |_ _ _
  103. _ ____| | \\ / | ___| |
  104. _ _ __ \n");
  105. printf("\033[0;32m | | '__/ _` \\ \\ / / _ \\ | |\\/| |/ _ \\ __/ _ \\ '__|\n");
  106. printf("\033[0;31m | | | | (_| |\\ V / __/ | | | | __/ || __/ | \n");
  107. printf("\033[0;32m |_|_| \\__,_| \\_/ \\___|_|_| |_|\\___|\\__\\___|_| \n");
  108. printf("\033[0;33m\n=======================================================\033[0;37m\n\n");
  109. }
  110.  
  111. void printMenu(){
  112. printf("[1]: Calculate travel expense.\n");
  113. printf("[2]: Show district list.\n");
  114. printf("[3]: History\n");
  115. printf("[4]: Exit\n\n");
  116. printf("Select command: ");
  117. }
  118.  
  119. void printDistricList(struct location *loc_arr){
  120. system("cls");
  121. printf("\033[0;33m====================================================================\033[0;37m\n\n");
  122. printf("\033[0;36m8888888b. d8b 888 d8b 888 \n");
  123. printf("888 \"Y88b Y8P 888 Y8P 888 \n");
  124. printf("888 888 888 888 \n");
  125. printf("888 888 888 .d8888b 888888 888d888 888 .d8888b 888888 .d8888b \n");
  126. printf("888 888 888 88K 888 888P\" 888 d88P\" 888 88K \n");
  127. printf("888 888 888 \"Y8888b. 888 888 888 888 888 \"Y8888b. \n");
  128. printf("888 .d88P 888 X88 Y88b. 888 888 Y88b. Y88b. X88 \n");
  129. printf("8888888P\" 888 88888P' \"Y888 888 888 \"Y8888P \"Y888 88888P' \n\n");
  130. printf("\033[0;33m====================================================================\033[0;37m\n\n");
  131. int i = 0;
  132. for(i = 0; i < DISTRICT_NUM ; i++){
  133. printf("\033[0;32m%d.\033[0;37m%s\n" , i+1 , loc_arr[i].name);
  134. }
  135. printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
  136. getchar();
  137. getchar();
  138. }
  139.  
  140. int searchLoc(char *name, struct location *loc_arr){
  141. int i = 0;
  142. for(i = 0; i < DISTRICT_NUM ; i++){
  143. if(!strcmp(loc_arr[i].name , name))return i;
  144. }
  145. return -1;
  146. }
  147.  
  148. void travelExpense(struct location *loc_arr){
  149. system("cls");
  150.  
  151. printf("\033[0;33m====================================================================\033[0;37m\n\n");
  152. printf("\033[0;36m8888888b. d8b 888 d8b 888 \n");
  153. printf("888 \"Y88b Y8P 888 Y8P 888 \n");
  154. printf("888 888 888 888 \n");
  155. printf("888 888 888 .d8888b 888888 888d888 888 .d8888b 888888 .d8888b \n");
  156. printf("888 888 888 88K 888 888P\" 888 d88P\" 888 88K \n");
  157. printf("888 888 888 \"Y8888b. 888 888 888 888 888 \"Y8888b. \n");
  158. printf("888 .d88P 888 X88 Y88b. 888 888 Y88b. Y88b. X88 \n");
  159. printf("8888888P\" 888 88888P' \"Y888 888 888 \"Y8888P \"Y888 88888P' \n\n");
  160. printf("\033[0;33m====================================================================\033[0;37m\n\n");
  161. int i = 0;
  162. for(i = 0; i < DISTRICT_NUM ; i++){
  163. printf("\033[0;32m%d.\033[0;37m%s\n" , i+1 , loc_arr[i].name);
  164. }
  165.  
  166. printf("\n\033[0;33m===============================\n");
  167. printf("\n\033[0;32m .\n");
  168. printf(" __ |\\\n");
  169. printf(" __/__\\___________| \\_\n");
  170. printf("| _ | ,| ___`-.\n");
  171. printf("| / \\ |___/ / \\ `-.\n");
  172. printf("|_| (O) |________| (O) |____|\n");
  173. printf(" \\___/ \\___/\n\n");
  174. printf("\n\033[0;33m===============================\n\n\n\033[0;37m");
  175. int time;
  176. printf("Please enter estimate idle time(min):");
  177. scanf("%d" ,&time);
  178. printf("Please enter the district in string(lower).\n");
  179. printf("From where (-1 to exit)? :");
  180. char input[50];
  181. gets(input);
  182. int first;
  183. int index_1 , index_2;
  184. double distance = 0;
  185. while(1){
  186. gets(input);
  187. if(!strcmp("-1" , input))return;
  188. index_1 = searchLoc(&input ,loc_arr );
  189. if(index_1 != -1)break;
  190. printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
  191. }
  192. printf("To where?:");
  193. while(1){
  194. gets(input);
  195. if(!strcmp("-1" , input))return;
  196. index_2 = searchLoc(&input ,loc_arr );
  197. if(index_2 != -1)break;
  198. printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
  199. }
  200. first = index_1;
  201. distance += calculateDistance(loc_arr[index_1].lats , loc_arr[index_1].longs ,loc_arr[index_2].lats , loc_arr[index_2].longs );
  202. while(1){
  203. index_1 = index_2;
  204. printf("Continue? (y/n):");
  205. gets(input);
  206. if(!strcmp("n", input))break;
  207. printf("To where?:");
  208. while(1){
  209. gets(input);
  210. if(!strcmp("-1" , input))return;
  211. index_2 = searchLoc(&input ,loc_arr );
  212. if(index_2 != -1)break;
  213. printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
  214. }
  215. distance += calculateDistance(loc_arr[index_1].lats , loc_arr[index_1].longs ,loc_arr[index_2].lats , loc_arr[index_2].longs );
  216. }
  217.  
  218. printf("\nFrom \033[0;32m%s \033[0;37mto \033[0;32m%s \033[0;37mis \033[0;32m%.2f \033[0;37mkm\n" , loc_arr[first].name , loc_arr[index_2].name , distance);
  219. double money = calculateMoney(distance) + (time * 3);
  220. printf("Estimated Price:\033[0;33m %.0f \033[0;37mbaht\n" , money);
  221.  
  222. FILE *fp;
  223. char str[100];
  224. fp = fopen("logs.txt" , "a");
  225. if (fp == NULL) {
  226. printf("Error opening file!\n");
  227. return 1;
  228. }
  229. fprintf(fp , "\n\nAt %s \n%s travel from %s to %s\nIn a distance of %.2fkm\nEstimated Price of %.0f baht" , get_current_time() , username , loc_arr[first].name , loc_arr[index_2].name , distance ,money );
  230. fclose(fp);
  231.  
  232. printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
  233. getchar();
  234. }
  235.  
  236. void printHistory(){
  237. system("cls");
  238. printf("================\033[0;33m History \033[0;37m===============\n");
  239. FILE *fp;
  240. char str[100];
  241. fp = fopen("logs.txt", "r");
  242. if (fp == NULL) {
  243. printf("Error opening the file!\n");
  244. return;
  245. }
  246.  
  247. while (fgets(str, sizeof(str), fp) != NULL) {
  248. printf("%s",str);
  249. }
  250. fclose(fp);
  251. printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
  252. getchar();
  253. getchar();
  254. }
  255.  
  256. int main(){
  257. printf("Enter your username: ");
  258. scanf("%s" , &username);
  259.  
  260. struct location *loc_arr;
  261. loc_arr = (struct location*)malloc(50 * sizeof(struct location));
  262. loadData(0 , loc_arr);
  263. loadData(1 , loc_arr);
  264. loadData(2 , loc_arr);
  265.  
  266. printTitle();
  267. while(1){
  268. printMenu();
  269. int command;
  270. scanf("%d" , &command);
  271. if(command == 1){
  272. travelExpense(loc_arr);
  273. printTitle();
  274. }else if(command == 2){
  275. printDistricList(loc_arr);
  276. printTitle();
  277.  
  278. }else if(command == 3){
  279. printHistory();
  280. printTitle();
  281. }else if(command == 4){
  282. break;
  283. }else{
  284. printf("\033[0;31mInvalid Command!\n\n\033[0;37m");
  285. }
  286. }
  287.  
  288. return 0;
  289. }
Success #stdin #stdout 0.03s 25960KB
stdin
Standard input is empty
stdout
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <time.h>

#define M_PI 3.14159265359
#define DISTRICT_NUM 50

struct location{
    char name[100];
    double lats;
    double longs;
};

char username[50];

char* get_current_time() {
   static char time_string[50];
   time_t current_time;
   struct tm *time_info;

   time(&current_time);
   time_info = localtime(&current_time);
   strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", time_info);

   return time_string;
}


double calculateDistance(double lat1, double lon1, double lat2, double lon2) {
    double R = 6371.0;  
    double dlat = (lat2 - lat1) * M_PI / 180.0;
    double dlon = (lon2 - lon1) * M_PI / 180.0;
    double a = sin(dlat/2) * sin(dlat/2) + cos(lat1 * M_PI / 180.0) * cos(lat2 * M_PI / 180.0) * sin(dlon/2) * sin(dlon/2);
    double c = 2 * atan2(sqrt(a), sqrt(1-a));
    double d = R * c;
    return d;
}

double calculateMoney(double km){
    double money = 35;
    if(km < 1) return 0;
    if(km > 80){
        money += (km - 80) * 10.50;
        km = 80;
    }
    if(km > 60){
        money += (km - 60) * 9.0;
        km = 60;
    }
    if(km > 40){
        money += (km - 40) * 8.5;
        km = 40;
    }
    if(km > 20){
        money += (km - 20) * 8;
        km = 20;
    }
    if(km > 10){
        money += (km - 10) * 7;
        km = 10;
    }
    km -= 1;
    money += km * 6.5;

    return money;
    
}

void loadData(int mode , struct location *loc_arr){
   FILE *fp;
   char str[100];
   if(mode == 0)fp = fopen("district.txt", "r");
   else if (mode == 1)fp = fopen("lats.txt", "r");
   else if (mode == 2)fp = fopen("longs.txt", "r");
   if (fp == NULL) {
      printf("Error opening the file!\n");
      return;
   }
   int i = 0;
   while (fgets(str, sizeof(str), fp) != NULL) {
      if(mode == 0){
        strcpy(loc_arr[i].name , strtok(str , "\n"));
      }else{
        char *eptr;
        double data = strtod(str , &eptr);
        if(mode == 1)loc_arr[i].lats = data;
        if(mode == 2)loc_arr[i].longs = data;
      }
       i++;
   }
   fclose(fp);
}

void printTitle(){
    system("cls");
    printf("\033[0;33m=======================================================\n");
    printf("\033[0;31m  _____                  _ _  _      _            \n");
    printf("\033[0;31m |__   __|                | |  \\/  |    | |           \n");
    printf("\033[0;32m    | |_ _ _
_   ____| | \\  / | ___| |
_ _ __ \n");
    printf("\033[0;32m    | | '__/ _` \\ \\ / / _ \\ | |\\/| |/ _ \\ __/ _ \\ '__|\n");
    printf("\033[0;31m    | | | | (_| |\\ V /  __/ | |  | |  __/ ||  __/ |   \n");
    printf("\033[0;32m    |_|_|  \\__,_| \\_/ \\___|_|_|  |_|\\___|\\__\\___|_|   \n");
    printf("\033[0;33m\n=======================================================\033[0;37m\n\n");
}

void printMenu(){
    printf("[1]: Calculate travel expense.\n");
    printf("[2]: Show district list.\n");
    printf("[3]: History\n");
    printf("[4]: Exit\n\n");
    printf("Select command: ");
}

void printDistricList(struct location *loc_arr){
    system("cls");
    printf("\033[0;33m====================================================================\033[0;37m\n\n");
    printf("\033[0;36m8888888b.  d8b          888            d8b          888             \n");
    printf("888  \"Y88b Y8P          888            Y8P          888             \n");
    printf("888    888              888                         888             \n");
    printf("888    888 888 .d8888b  888888 888d888 888  .d8888b 888888 .d8888b  \n");
    printf("888    888 888 88K      888    888P\"   888 d88P\"    888    88K      \n");
    printf("888    888 888 \"Y8888b. 888    888     888 888      888    \"Y8888b. \n");
    printf("888  .d88P 888      X88 Y88b.  888     888 Y88b.    Y88b.       X88 \n");
    printf("8888888P\"  888  88888P'  \"Y888 888     888  \"Y8888P  \"Y888  88888P' \n\n");
    printf("\033[0;33m====================================================================\033[0;37m\n\n");
    int i = 0;
    for(i = 0; i < DISTRICT_NUM ; i++){
        printf("\033[0;32m%d.\033[0;37m%s\n" , i+1 , loc_arr[i].name);
    }
    printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
    getchar();
    getchar();
}

int searchLoc(char *name, struct location *loc_arr){
    int i = 0;
    for(i = 0; i < DISTRICT_NUM ; i++){
        if(!strcmp(loc_arr[i].name , name))return i;
    }
    return -1;
}

void travelExpense(struct location *loc_arr){
    system("cls");

    printf("\033[0;33m====================================================================\033[0;37m\n\n");
    printf("\033[0;36m8888888b.  d8b          888            d8b          888             \n");
    printf("888  \"Y88b Y8P          888            Y8P          888             \n");
    printf("888    888              888                         888             \n");
    printf("888    888 888 .d8888b  888888 888d888 888  .d8888b 888888 .d8888b  \n");
    printf("888    888 888 88K      888    888P\"   888 d88P\"    888    88K      \n");
    printf("888    888 888 \"Y8888b. 888    888     888 888      888    \"Y8888b. \n");
    printf("888  .d88P 888      X88 Y88b.  888     888 Y88b.    Y88b.       X88 \n");
    printf("8888888P\"  888  88888P'  \"Y888 888     888  \"Y8888P  \"Y888  88888P' \n\n");
    printf("\033[0;33m====================================================================\033[0;37m\n\n");
    int i = 0;
    for(i = 0; i < DISTRICT_NUM ; i++){
        printf("\033[0;32m%d.\033[0;37m%s\n" , i+1 , loc_arr[i].name);
    }
    
    printf("\n\033[0;33m===============================\n");
    printf("\n\033[0;32m                  .\n");
    printf("    __            |\\\n");
    printf(" __/__\\___________| \\_\n");
    printf("|   _    |  ,|   ___`-.\n");
    printf("|  /   \\   |___/  /   \\  `-.\n");
    printf("|_| (O) |________| (O) |____|\n");
    printf("   \\___/          \\___/\n\n");
    printf("\n\033[0;33m===============================\n\n\n\033[0;37m");
    int time;
    printf("Please enter estimate idle time(min):");
    scanf("%d" ,&time);
    printf("Please enter the district in string(lower).\n");
    printf("From where (-1 to exit)? :");
    char input[50];
    gets(input);
    int first;
    int index_1 , index_2;
    double distance = 0;
    while(1){
        gets(input);
        if(!strcmp("-1" , input))return;
        index_1 = searchLoc(&input ,loc_arr );
        if(index_1 != -1)break;
        printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
    }
    printf("To where?:");
    while(1){
        gets(input);
        if(!strcmp("-1" , input))return;
        index_2 = searchLoc(&input ,loc_arr );
        if(index_2 != -1)break;
        printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
    }
    first = index_1;
    distance += calculateDistance(loc_arr[index_1].lats , loc_arr[index_1].longs ,loc_arr[index_2].lats , loc_arr[index_2].longs );
    while(1){
        index_1 = index_2;
        printf("Continue? (y/n):");
        gets(input);
        if(!strcmp("n", input))break;
            printf("To where?:");
        while(1){
            gets(input);
            if(!strcmp("-1" , input))return;
            index_2 = searchLoc(&input ,loc_arr );
            if(index_2 != -1)break;
            printf("\n\033[0;31mInvalid input!\n\033[0;37m\nTry again:");
        }
        distance += calculateDistance(loc_arr[index_1].lats , loc_arr[index_1].longs ,loc_arr[index_2].lats , loc_arr[index_2].longs );
    }

    printf("\nFrom \033[0;32m%s \033[0;37mto \033[0;32m%s \033[0;37mis \033[0;32m%.2f \033[0;37mkm\n" , loc_arr[first].name , loc_arr[index_2].name , distance);
    double money = calculateMoney(distance) + (time * 3);
    printf("Estimated Price:\033[0;33m %.0f \033[0;37mbaht\n" , money);

    FILE *fp;
    char str[100];
    fp = fopen("logs.txt" , "a");
    if (fp == NULL) {
        printf("Error opening file!\n");
        return 1;
    }
    fprintf(fp , "\n\nAt %s \n%s travel from %s to %s\nIn a distance of %.2fkm\nEstimated Price of %.0f baht" , get_current_time() , username , loc_arr[first].name , loc_arr[index_2].name , distance ,money );
    fclose(fp);

    printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
    getchar();
}

void printHistory(){
    system("cls");
    printf("================\033[0;33m History \033[0;37m===============\n");
    FILE *fp;
    char str[100];
    fp = fopen("logs.txt", "r");
    if (fp == NULL) {
      printf("Error opening the file!\n");
      return;
    }

    while (fgets(str, sizeof(str), fp) != NULL) {
     printf("%s",str);
    }
    fclose(fp);
    printf("\n\033[0;31mPress enter to continue..... \033[0;37m");
    getchar();
    getchar();
}

int main(){
    printf("Enter your username: ");
    scanf("%s" , &username);

    struct location *loc_arr;
    loc_arr = (struct location*)malloc(50 * sizeof(struct location));
    loadData(0 , loc_arr);
    loadData(1 , loc_arr);
    loadData(2 , loc_arr);
    
    printTitle();
    while(1){
        printMenu();
        int command;
        scanf("%d" , &command);
        if(command == 1){
            travelExpense(loc_arr);
            printTitle();
        }else if(command == 2){
            printDistricList(loc_arr);
            printTitle();
            
        }else if(command == 3){
            printHistory();
            printTitle();
        }else if(command == 4){
            break;
        }else{
            printf("\033[0;31mInvalid Command!\n\n\033[0;37m");
        }
    }
    
    return 0;
}