티스토리 뷰
소스 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> #include <unistd.h> typedef struct ASCII_CODE{ unsigned int a; unsigned int b; unsigned int c; unsigned int d; unsigned int e; unsigned int f; unsigned int g; unsigned int h; unsigned int i; unsigned int j; unsigned int k; unsigned int l; unsigned int m; unsigned int n; unsigned int o; unsigned int p; unsigned int q; unsigned int r; unsigned int s; unsigned int t; unsigned int u; unsigned int v; unsigned int w; unsigned int x; unsigned int y; unsigned int z; } ascii; ascii abc; int count(char n) { switch(n){ case 'A': case 'a': abc.a++; return 0; case 'B': case 'b': abc.b++; return 0; case 'C': case 'c': abc.c++; return 0; case 'D': case 'd': abc.d++; return 0; case 'E': case 'e': abc.e++; return 0; case 'F': case 'f': abc.f++; return 0; case 'G': case 'g': abc.g++; return 0; case 'H': case 'h': abc.h++; return 0; case 'I': case 'i': abc.i++; return 0; case 'J': case 'j': abc.j++; return 0; case 'K': case 'k': abc.k++; return 0; case 'L': case 'l': abc.l++; return 0; case 'M': case 'm': abc.m++; return 0; case 'N': case 'n': abc.n++; return 0; case 'O': case 'o': abc.o++; return 0; case 'P': case 'p': abc.p++; return 0; case 'Q': case 'q': abc.q++; return 0; case 'R': case 'r': abc.r++; return 0; case 'S': case 's': abc.s++; return 0; case 'T': case 't': abc.t++; return 0; case 'U': case 'u': abc.u++; return 0; case 'V': case 'v': abc.v++; return 0; case 'W': case 'w': abc.w++; return 0; case 'X': case 'x': abc.x++; return 0; case 'Y': case 'y': abc.y++; return 0; case 'Z': case 'z': abc.z++; return 0; case '\n': return 0; default: puts("error!"); return -1; } } void check(char* string, unsigned int size) { int i; for(i=0; i<size; i++) { if(count(string[i]) == -1) exit(-1); } } void result(void) { puts("================================================"); printf("A : \t%u\n", abc.a); printf("B : \t%u\n", abc.b); printf("C : \t%u\n", abc.c); printf("D : \t%u\n", abc.d); printf("E : \t%u\n", abc.e); printf("F : \t%u\n", abc.f); printf("G : \t%u\n", abc.g); printf("H : \t%u\n", abc.h); printf("I : \t%u\n", abc.i); printf("J : \t%u\n", abc.j); printf("K : \t%u\n", abc.k); printf("L : \t%u\n", abc.l); printf("M : \t%u\n", abc.m); printf("N : \t%u\n", abc.n); printf("O : \t%u\n", abc.o); printf("P : \t%u\n", abc.p); printf("Q : \t%u\n", abc.q); printf("R : \t%u\n", abc.r); printf("S : \t%u\n", abc.s); printf("T : \t%u\n", abc.t); printf("U : \t%u\n", abc.u); printf("V : \t%u\n", abc.v); printf("W : \t%u\n", abc.w); printf("X : \t%u\n", abc.x); printf("Y : \t%u\n", abc.y); printf("Z : \t%u\n", abc.z); puts("================================================"); } int main(int argc, char* argv[]){ char* string; unsigned int size; int i, fd; if(argc != 2){ printf("usage : ./filename [read filename]\n"); return 0; } fd = open(argv[1], O_RDONLY); if(fd==-1) exit(-1); size = lseek(fd, 0, SEEK_END); string = (char*) malloc(size); lseek(fd, 0, SEEK_SET); if(read(fd, string, size)!=size) exit(-1); close(fd); check(string, size); result(); return 0; } | cs |
- 매우 단순한 코드이다. 알파벳 하나하나 뽑아서 계산해야 한다고 생각하여 저수준 파일입출력을 통해 작성하였다.
- switch 문에 계산하고자 하는 문자를 추가해서 사용가능하다.
앞에서 이상한 계산기를 만들었더니 갑자기 생각나서 만들고 싶어져 만들게 되었다...
'Programming > C' 카테고리의 다른 글
단일 환형 연결리스트 구현 (0) | 2016.11.04 |
---|---|
error LNK2001 오류 해결 방법 (0) | 2016.10.31 |
난수 자릿수별 빈도 계산기 (0) | 2016.09.14 |
dumpcode.h (0) | 2016.07.05 |
fork와 pipe와 dup2 함수를 통한 표준 입력 (2) | 2016.06.23 |
댓글