Scientific notation is the way that scientists easily handle very large numbers or very small numbers. The notation matches the regular expression [+-][1-9]"."[0-9]+E[+-][0-9]+ which means that the integer portion has exactly one digit, there is at least one digit in the fractional portion, and the number and its exponent's signs are always provided even when they are positive.
Now given a real number A in scientific notation, you are supposed to print A in the conventional notation while keeping all the significant figures.
Input Specification:
Each input file contains one test case. For each case, there is one line containing the real number A in scientific notation. The number is no more than 9999 bytes in length and the exponent's absolute value is no more than 9999.
Output Specification:
For each test case, print in one line the input number A in the conventional notation, with all the significant figures kept, including trailing zeros,
Sample Input 1:
+1.23400E-03
Sample Output 1:
0.00123400
Sample Input 2:
-1.2E+10
Sample Output 2:
-12000000000
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main(){ 5 string s; 6 int i; 7 cin>>s; 8 bool isPositive= s[0]=='+' ? true : false; 9 bool positiveExp = true, findE=false; 10 int dot, pos, exp=0; 11 //找小数点, E的位置, 以及计算指数值 12 for(i=1; i<s.size(); i++){ 13 if(s[i]=='.') dot = i; 14 if(s[i]=='E'){ 15 pos = i; 16 if(s[i+1]=='-') positiveExp=false; 17 findE=true; 18 } 19 if(findE && s[i]>='0'&&s[i]<='9') exp = exp*10 + (s[i]-'0'); 20 } 21 //依次删除小数点, E以及E之后的字符串, 符号位 22 //位置不可交换, 否则会出错, 剩下的全是数字位 23 s.erase(dot, 1); s.erase(pos-1); s.erase(0,1); 24 if(positiveExp){ 25 if(exp<pos-dot-1) s = s.substr(0, exp+1) + "." + s.substr(exp+1); 26 else{ 27 for(i=0; i<-pos+dot+1+exp; i++) s.append("0"); 28 } 29 }else{ 30 string temp=""; 31 for(i=0; i<exp-1; i++) temp.append("0"); 32 s = "0." + temp + s.substr(0); 33 } 34 if(!isPositive) cout<<'-'; 35 cout<<s<<endl; 36 return 0; 37 }