我要用C語言寫一個程式
讀入一個科學記號表示的字串
ex:0.63e3
我要把分開並轉換成兩個部份
0.63
3
謝謝!!
2006-12-27 15:01:45 · 1 個解答 · 發問者 Y.L. 1 in 電腦與網際網路 ➔ 程式設計
#include
main()
{
char str[20], *buf;
printf("輸入科學記號 => ");
scanf("%s", &str);
buf = strtok(str, "Ee");
while(buf !=NULL)
{
printf("[%s]\n",buf);
buf = strtok(NULL, "Ee");
}
}
如果有問題, 請來函討論. 不然, 我可能會錯失你再補充的疑點.
2006-12-28 10:36:47 · answer #1 · answered by JJ 7 · 0⤊ 0⤋