-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1024.c
69 lines (67 loc) · 1.31 KB
/
1024.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
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdbool.h>
#include <stdlib.h>
int main(){
char str[10000];
scanf("%s",str);
int i;
for(i=1;i<strlen(str);i++){
if(str[i]=='E'){
break;
}
}
int temp=i;
int c=atoi(str+i+1);
if(c<0){
c=-c;
if(str[0]=='-'){
printf("-");
}
for(i=0;i<c;i++){
printf("0");
if(i==0){
printf(".");
}
}
for(i=1;i<temp;i++){
if(str[i]=='.'){
i++;
}
printf("%c",str[i]);
}
}
else if(c==0){
printf("1");
}
else{
if(str[0]=='-'){
printf("-");
}
int d=temp-3;
if(c>=d){
for(i=1;i<temp;i++){
if(str[i]=='.'){
i++;
}
printf("%c",str[i]);
}
for(i=0;i<c-d;i++){
printf("0");
}
}
else{
for(i=1;i<temp;i++){
if(str[i]=='.'){
i++;
}
printf("%c",str[i]);
if(i==c+2){
printf(".");
}
}
}
}
return 0;
}