# 2.1x <- c(1,2,3);y <- c(4,5,6)e <- c(1,1,1)#1)z <- 2*x+y+e;z#2)crossprod(x,y)#3)outer(x,y)#2.2#按列输入(默认)A <- matrix(1:20,c(4,5))#按行输入B <- matrix(1:20...
分类:
其他好文 时间:
2015-02-27 11:31:15
阅读次数:
179
第四章小问题集锦以上是我这一章课后题思考的流程,有错误和不严谨地方请直接指出!1、解方程组任务一:使用assert宏,解不唯一时异常退出#include //x=(ce-bf)/(ae-bd), y=(cd-af)/(bd-ae)int solve(double a, double b, doubl...
分类:
编程语言 时间:
2015-02-15 18:08:07
阅读次数:
220
欢迎交流讨论!@2-1#include using namespace std;ifstream fin("aplusb.in");ofstream fout("aplusb.out");int main(){ int n; while(fin>>n){ int count...
分类:
编程语言 时间:
2015-02-13 11:32:45
阅读次数:
120
CREATETABLEstudent_t(snoChar(7)PRIMARYKEY,--学号snameVarchar(20)NOTNULL,--姓名ssexCHAR(2)NOTNULL,--性别sageSmallint,--年龄CLONCHAR(5)--学生所在班级的编号);CREATETABLEcourse_t(cnoCHAR(1)PRIMARYKEY,--课程编号cnameVarchar(20)NOTNULL,--课程名称creditSMALLINT--..
分类:
数据库 时间:
2014-12-29 06:41:37
阅读次数:
425
上周买了本书叫《趣学Python编程》(英文名:Python for kids),昨天看完后把书后面的题都做了下。由于第1、2章没有习题,第13章及之后都是描写实例的章节,因此这个总结性的文章中只包含了第3-12章的习题答案。...
分类:
编程语言 时间:
2014-12-02 00:25:02
阅读次数:
265
1. 1 #import "Fraction.h" 2 3 @interface Fraction (MathOps) 4 5 - (Fraction *) add: (Fraction *) f; 6 7 - (Fraction *) mul: (Fraction *) f; 8 9 - ...
分类:
其他好文 时间:
2014-11-21 01:22:09
阅读次数:
139
1. 1 - (id) init 2 { 3 return [self initWithWidth: 0 andHeight: 0]; 4 } 5 6 - (id) initWithWidth: (int) w andHeight: (int) h 7 { 8 self = [su...
分类:
其他好文 时间:
2014-11-19 23:39:36
阅读次数:
267
1.检测不到reduce方法,因为Complex类中没有定义;2.合法。因为id类型可以用来存储属于任何类的对象(不能为id变量使用点运算符)3. 1 //XYPoint类print方法 2 3 4 - (void) print 5 { 6 NSLog(@" (%g , %g) ", x...
分类:
其他好文 时间:
2014-11-13 18:48:42
阅读次数:
225
1.各个方法的实现 1 - (Fraction *) subtract: (Fraction *) f 2 { 3 Fraction *result = [[Fraction alloc] init]; 4 5 result.numerator = numerator *f...
分类:
其他好文 时间:
2014-11-08 23:30:13
阅读次数:
462
1.1 int value1,value2;2 printf("请输入两个整数,用逗号隔开:");3 scanf("%d,%d",&value1,&value2);4 5 if (value1 % value2 == ...
分类:
其他好文 时间:
2014-11-07 16:48:05
阅读次数:
174