This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
/** Error Messages **/ | |
const char undefinedCmd[100] = "Undefined Command."; | |
void swap (int *a, int *b) { | |
int tmp = *a; | |
*a = *b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
/** Error Messages **/ | |
const char undefinedCmd[100] = "Undefined Command."; | |
void swap (int *a, int *b) { | |
int tmp = *a; | |
*a = *b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
/** Error Messages **/ | |
const char undefinedCmd[100] = "Undefined Command."; | |
void swap (int *a, int *b) { | |
int tmp = *a; | |
*a = *b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
/** Error Messages **/ | |
const char undefinedCmd[100] = "Undefined Command."; | |
void swap (int *a, int *b) { | |
int tmp = *a; | |
*a = *b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table, th, td, tr{ | |
border-collapse: collapse; | |
border: 1px solid #c4c4c4; | |
} | |
.Ticket { | |
height: 100%; | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
int year, month, day; | |
scanf("%d.%d.%d", &year, &month, &day); | |
printf("%04d년 %02d월 %02d일\n", year, month, day); | |
return 0; | |
} |
NewerOlder