본문 바로가기

공부/c언어

문자열 -> 숫자 변환 함수

반응형
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
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
 
void split(char* str_sp, char* num1_sp, char* num2_sp, int len); //배열에 들어있는 문자열을 띄어쓰기를 기준으로 나눠서 각각 다른 배열에 저장
void charToInt(float* num1_ch, float* num2_ch, char* num1_char_ch, char* num2_char_ch, int len); //배열에 들어있는 문자를 숫자로 변환
 
int main()
{
    FILE* fp;
    float num1 = 0;
    float num2 = 0;
    char str[20] = {0,};
    char num1_char[20] = {0,};
    char num2_char[20] = {0,};
    int length = sizeof(str)/sizeof(char);
 
    fp = fopen("input.txt", "r+");
    fgets(str, 20, fp);
    printf("%s\n", str);
 
    //배열에 들어있는 문자열을 띄어쓰기를 기준으로 나눠서 각각 다른 배열에 저장
    split(str, num1_char, num2_char, length);
    charToInt(&num1, &num2, num1_char, num2_char, length);
 
    fclose(fp);
    fp = fopen("output.txt", "w+");
    fputs(str, fp);
 
    system("pause");
    return 0;
}
 
void split(char str_sp[], char* num1_sp, char* num2_sp, int len)
{
    int split_num = 0;
    //한 배열에 들어있는 2개의 유리수 각각을 서로 다른 배열에 저장
    for(int i = 0 ; i < len; i++)
    {
        if(str_sp[i] == ' ')
        {
            split_num = i;
            break;
        }
    }
 
    for(int i = 0; i < split_num; i++)
    {
        num1_sp[i] = str_sp[i];
    }
 
    for(int i = split_num+1; i < len; i++)
    {
        
        num2_sp[i-split_num-1] = str_sp[i]; 
    }
    printf("num1 = %s, num2 = %s\n", num1_sp, num2_sp);
}
 
void charToInt(float* num1_ch, float* num2_ch, char* num1_char_ch, char* num2_char_ch, int len)
{
    int point = 0; //소수점의 위치를 저장하는 변수
    float temp = 0; //임시 정보저장
    //--num1--
    //소숫점의 위치를 찾기
    for(int i = 0; i < len; i++)
    {
        if(num1_char_ch[i] == '.')
        {
            point = i;
            break;
        }
    }
    
    //배열에서 정수를 뽑아내어 저장
    for(int i = 0; i < point; i++)
    {
        temp = (float)num1_char_ch[i] - 48;
        for(int j = 0; j < (point-i-1); j++)
        {
            temp *= 10;
        }
        *(num1_ch) += temp;
    }
    
    //배열에서 유리수를 뽑아내어 저장
    for(int i = point+1; i < len; i++)
    {
        if(num1_char_ch[i] != 0)
        {
            temp = (float)num1_char_ch[i] - 48;
            for(int j = 0; j < i-point; j++)
            {
                temp /= 10;
            }
            *(num1_ch) += temp;
        }
    }
    printf("*num1_ch = %f\n", *num1_ch);
 
    //--num2--
    //소숫점의 위치를 찾기
    for(int i = 0; i < len; i++)
    {
        if(num2_char_ch[i] == '.')
        {
            point = i;
            break;
        }
    }
    
    //배열에서 정수를 뽑아내어 저장
    for(int i = 0; i < point; i++)
    {
        temp = num2_char_ch[i] - 48;
        for(int j = 0; j < (point-i-1); j++)
        {
            temp *= 10;
        }
        *(num2_ch) += temp;
    }
    
    //배열에서 유리수를 뽑아내어 저장
    for(int i = point+1; i < len; i++)
    {
        if(num2_char_ch[i] != 0)
        {
            temp = num2_char_ch[i] - 48;
            for(int j = 0; j < i-point; j++)
            {
                temp /= 10;
            }
            *(num2_ch) += temp;
        }
    }
    printf("*num2_ch = %f\n", *num2_ch);
}
반응형