-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfast_read.cpp
120 lines (90 loc) · 1.58 KB
/
fast_read.cpp
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
#include <cstdio>
#include <cmath>
#include <string>
using std::string;
int readInt(int *val)
{
int x = 0, f = 1;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-') f = -1;
if (ch == EOF) return -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
x = x * 10 + (ch - '0');
ch = getchar();
}
*val = x * f;
return 0;
}
int readLL(long long *val)
{
long long x = 0;
int f = 1;
char ch = getchar();
while (ch < '0' || ch > '9')
{
if (ch == '-') f = -1;
if (ch == EOF) return -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
x = x * 10 + (ch - '0');
ch = getchar();
}
*val = x * f;
return 0;
}
int readFloat(float *val)
{
double x = 0, f = 0;
int F = 1;
char ch = getchar();
while (ch < '0' | ch > '9')
{
if (ch == '-') F = -1;
if (ch == EOF) return -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9')
{
x = x * 10 + (ch - '0');
ch = getchar();
}
if (ch == '.')
{
int k = 1;
ch = getchar();
while (ch >= '0' && ch <= '9')
{
f += (ch - '0') / pow(10, k);
ch = getchar();
++k;
}
}
*val = (x + f) * F;
return 0;
}
int readDouble(double *val)
{
}
int readChar(char *val)
{
}
int readCharArray(char *val)
{
}
int readString(string &val)
{
}
int main()
{
float sum;
readFloat(&sum);
printf("%f\n", sum);
return 0;
}