#include #include typedef struct account { double suma; char ucet[7]; } ACCOUNT; ACCOUNT ucty[2000]; int max = 0; int create() { int x=0; char ucet[7]; scanf("%s",ucet); for(x=0;x0) { scanf("%s %lf",ucty[max].ucet, &ucty[max].suma); max += 1; } while(1) { scanf("%s",vstup); if(!strcmp(vstup,"end")) break; if(!strcmp(vstup,"create")) create(); else if(!strcmp(vstup,"deposit")) deposit(); else if(!strcmp(vstup,"withdraw")) withdraw(); else if(!strcmp(vstup,"transfer")) transfer(); } printf("end\n\n"); } printf("goodbye\n"); return 0; }