回答編集履歴
1
追記
test
CHANGED
@@ -19,3 +19,31 @@
|
|
19
19
|
}
|
20
20
|
|
21
21
|
```
|
22
|
+
|
23
|
+
あるいは
|
24
|
+
|
25
|
+
```C++
|
26
|
+
|
27
|
+
#include <iostream>
|
28
|
+
|
29
|
+
#include <vector>
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
int main() {
|
34
|
+
|
35
|
+
using namespace std;
|
36
|
+
|
37
|
+
vector<vector<double>> A;
|
38
|
+
|
39
|
+
A.assign({{3,-1,-1},{-1,3,-1},{-1,-1,3}});
|
40
|
+
|
41
|
+
vector<double> b;
|
42
|
+
|
43
|
+
b.assign({1,1,1});
|
44
|
+
|
45
|
+
...
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
```
|