摘要: 这道题没有什么难得,就是一些常识不太清楚,这是从一位学长那看来的,觉得很简单View Code 1 #include<stdio.h> 2 #include<stdlib.h> 3 int main() 4 { 5 char str1[1001],str2[1001],c; 6 double a,b; 7 while(scanf("%s %c %s",str1,&c,str2)!=EOF) 8 { 9 a=atof(str1);10 b=atof(str2);11 printf("%s %c %s\n",str1... 阅读全文
posted @ 2012-05-29 02:35 琳&leen 阅读(181) 评论(0) 推荐(0) 编辑