SOLUTION OF URI 1958 URI SOLUTIONS // Solution of 1958 Scientific Notation // (Mahmud_Jamil) BRUR #include <stdio.h> int main() { long double X; char s[120]; scanf("%LE", &X); sprintf(s,"%LE", X); if(s[0] != '-') printf("+"); printf("%.4LE\n", X); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1003 // question of uri 1003 Simple Sum //1003 (Mahmud_Jamil) BR… Read MoreSOLUTION OF URI 1005 // question of uri 1005 Average 1 //1005 (Mahmud_Jamil) … Read MoreSOLUTION OF URI 1004 // question of 1004 Simple Product // &nbs… Read MoreSOLUTION OF URI 1006 question of uri 1006 Average 2 //1006 (Mahmud_Jamil) BRUR … Read MoreSOLUTION OF URI 1007 // question of uri 1007 Difference //1007 (Mahmud_Jamil) BRU… Read More