2013年4月2日
摘要: #include<iostream>#include<stdio.h>#include<math.h>#include<string.h>#include<algorithm>#define LEN1 sizeof(struct Queue1)#define LEN2 sizeof(struct Queue2)#define LEN3 sizeof(struct Queue3)using namespace std;struct Queue1{double xishu;char zimu[10];double cishu[10];st 阅读全文
posted @ 2013-04-02 13:38 @ 小浩 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<string.h>#include<math.h>#include<algorithm>#include<stdio.h>using namespace std;int main(){double num1[20];double num2[20]; printf("请输入多项式的最高次数数\n"); int n; cin>>n; printf("请输入该一元多项式的元\n"); getchar(); char s; scanf(& 阅读全文
posted @ 2013-04-02 13:35 @ 小浩 阅读(411) 评论(0) 推荐(0) 编辑
摘要: JavaScript截取字符串方法详解1 substring() (1)用于提取字符串中介于两个指定下标之间的字符。语法:stringObject.substring(start,stop) start:必需。一个非负的整数,规定要提取的子串在第一个字符在 stringObject 中的位置。 stop;可选。一个非负的整数,比要提取的子串的最后一个字符在 stringObject 中的位置多 1。如果省 略该参数, 那么返回的子串会一直到字符串的结尾。(2)返回值一个新的字符串,该字符串值包含 stringObject 的一个子字符串,其内容是从 start 处到 stop-1 处的所有字. 阅读全文
posted @ 2013-04-02 13:33 @ 小浩 阅读(1019) 评论(0) 推荐(0) 编辑