Skip to content

Commit 7d58d13

Browse files
committed
更新链接
1 parent e83e211 commit 7d58d13

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

Chapter1/Chapter1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
1+
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
22
Java教程-
33
======
44

@@ -186,7 +186,7 @@ for (int i = 0; i < arr.length; i++){
186186
(E) I, II, and III
187187

188188
答案:
189-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>E</cr>
189+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>E</cr>
190190

191191
2.Refer to the following codes egment. You may assume that arr is an array of int values.
192192
```java
@@ -207,4 +207,4 @@ Which of the following will be the result of executing the segment?
207207
(E) A run-time error will occur.
208208

209209
答案:
210-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>E</cr>
210+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>E</cr>

Chapter2/Chapter2.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
1+
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
22
Java教程-
33
======
44

@@ -105,7 +105,7 @@ if (a == b) // 不成立
105105
(E) The String methods are easier to use with an ArrayList than with an array.
106106

107107
下面的内容要按一下才会显示:
108-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>E</cr>
108+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>E</cr>
109109

110110
2.Here is a method that locates the Student with the highest idNum:
111111
```java
@@ -157,4 +157,4 @@ return stuArr[maxPos];
157157
(E) II and III only
158158

159159
下面的内容要按一下才会显示:
160-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>E</cr>
160+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>E</cr>

Chapter3/Chapter3.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
1+
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
22
Java教程-
33
======
44

@@ -89,7 +89,7 @@ If list is initially 6 1 8, what will it be following execution of the code segm
8989
(E) 2 3 3 2
9090

9191
下面的内容要按一下才会显示:
92-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>A</cr>
92+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>A</cr>
9393
2.Here is the getTotal method from the Purse class:
9494
```java
9595
/** @return the total value of coins in purse */ public double getTotal()
@@ -134,4 +134,4 @@ for (Coin c : coins){
134134
```
135135

136136
下面的内容要按一下才会显示:
137-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>E</cr>
137+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>E</cr>

Chapter4/Chapter4.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
1+
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
22
Java教程-
33
======
44

@@ -111,7 +111,7 @@ then alter(1) will change mat to
111111
* 3999
112112

113113
下面的内容要按一下才会显示:
114-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>A</cr>
114+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>A</cr>
115115
2.Consider the following method that will alter the matrix mat:
116116
```
117117
/** @param mat the initialized matrix * @param row the row number
@@ -155,4 +155,4 @@ After the method call matStuff(mat,2), matrix mat will be
155155
* 5243
156156

157157
下面的内容要按一下才会显示:
158-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>A</cr>
158+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>A</cr>

Example.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
1+
<notice>教程读者请不要直接阅读本文件,因为诸多功能在此无法正常使用,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)学习完整教程。如果您喜欢我们的教程,请在右上角给我们一个“Star”,谢谢您的支持!</notice>
22

33
初入编程
44
======
@@ -21,12 +21,12 @@
2121
```
2222
Blocks实验室:
2323
<lab lang="blocks" parameters="logic=false&math=false&loops=false&lists=false&color=false&variables=false&functions=false&text=false">
24-
<notice>练习环境在此无法显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>
24+
<notice>练习环境在此无法显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>
2525
</lab>
2626

2727
Java实验室:
2828
<lab lang="java" parameters="filename=Hello.java">
29-
<notice>练习环境在此无法显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>
29+
<notice>练习环境在此无法显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>
3030
public class Hello {
3131
public static void main(String[] args) {
3232
System.out.println("Hello Java!");
@@ -35,4 +35,4 @@ public class Hello {
3535
</lab>
3636

3737
下面的内容要按一下才会显示:
38-
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/1)查看。</notice>答案已经被显示出来了</cr>
38+
<cr type="hidden"><notice>隐藏内容功能在此无法正常显示,请移步至[程谱 coderecipe.cn](https://coderecipe.cn/learn/4)查看。</notice>答案已经被显示出来了</cr>

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
最后,谢谢大家对程谱的支持和厚爱~💖
1010

11-
P.S: 教程读者请不要直接阅读本项目的文件,因为诸多功能在此无法正常使用,请移步至[程谱官网](https://coderecipe.cn/learn/1)免费学习这个教程的完整版哦。
11+
P.S: 教程读者请不要直接阅读本项目的文件,因为诸多功能在此无法正常使用,请移步至[程谱官网](https://coderecipe.cn/learn/4)免费学习这个教程的完整版哦。
1212

1313
目录
1414
------
@@ -36,7 +36,7 @@ P.S: 教程读者请不要直接阅读本项目的文件,因为诸多功能在
3636
* 处理二维数组
3737
* 小练习
3838

39-
看完目录以后,如果你想学习本教程,那么就点击[这里](https://coderecipe.cn/learn/1)里开始吧。
39+
看完目录以后,如果你想学习本教程,那么就点击[这里](https://coderecipe.cn/learn/4)里开始吧。
4040

4141
贡献
4242
------
@@ -46,6 +46,6 @@ P.S: 教程读者请不要直接阅读本项目的文件,因为诸多功能在
4646
------
4747
本项目为程谱项目组编写,我们推荐教师直接使用程谱网站来作为教学工具。
4848

49-
为了搭建一个友好互助的社区,我们同样也允许您以**在醒目处保留“本教程来源于程谱”并链接到[程谱](https://coderecipe.cn/learn/1)的方式****非商业用途**使用本教程。其他使用方式请[联系我们](mailto:[email protected])获得许可。
49+
为了搭建一个友好互助的社区,我们同样也允许您以**在醒目处保留“本教程来源于程谱”并链接到[程谱](https://coderecipe.cn/learn/4)的方式****非商业用途**使用本教程。其他使用方式请[联系我们](mailto:[email protected])获得许可。
5050

5151
一切对本教程的最终解释权归程谱所有。

0 commit comments

Comments
 (0)