#include <stdio.h>
#include <stdlib.h>
int main()
{
char str[] = "1268.5 4894.44";
int a, b, c, d;
sscanf(str, "%d.%d %d.%d", &a, &b, &c, &d);
printf("a = %d\nb = %d\nc = %d\nd = %d\n", a, b, c, d);
return 0;
}
Linux是简单的,你不需要成为天才也能理解这种简单,Windows是复杂的,就算你是天才也不能理解这种复杂