1 保留小数点后两位#include cout const char * spilt="/";char
*p;p=strtok(str,spilt);while(p!=NULL){ //cout
#includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:
编程语言 时间:
2014-05-01 05:05:45
阅读次数:
409
一、用strtok函数进行字符串分割原型:char *strtok(char *str,
const char
*delim);功能:通过一系列调用来分解字符串为一组字符串。参数说明:str为要分解的字符串,delim为分隔符字符串。返回值:从str开头开始的一个个被分割的串。当没有被分割的串时则返...
分类:
其他好文 时间:
2014-04-30 21:30:39
阅读次数:
518