From ae3b47ebba2e9c7d6c4dfdce191d92754d314d96 Mon Sep 17 00:00:00 2001 From: wizardforcel <562826179@qq.com> Date: Fri, 10 Jul 2020 21:25:09 +0800 Subject: [PATCH] 2020-07-10 21:25:09 --- docs/c/29.md | 2 +- docs/kotlin/12.md | 2 +- docs/py/55.md | 6 +++--- docs/py/61.md | 4 ++-- docs/py/62.md | 2 +- docs/swift/33.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/c/29.md b/docs/c/29.md index dfec8d1..37e414d 100644 --- a/docs/c/29.md +++ b/docs/c/29.md @@ -112,7 +112,7 @@ printf("%d", *pc); // Output: 5 ### 改变指针指向的值 -Let's take an example. +让我们举个例子。 ```c int* pc, c; diff --git a/docs/kotlin/12.md b/docs/kotlin/12.md index 56ed10a..1edba86 100644 --- a/docs/kotlin/12.md +++ b/docs/kotlin/12.md @@ -69,7 +69,7 @@ fun main(args: Array) { } ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```kt Enter operator either +, -, * or / diff --git a/docs/py/55.md b/docs/py/55.md index 1260c70..ad5dec4 100644 --- a/docs/py/55.md +++ b/docs/py/55.md @@ -38,7 +38,7 @@ date_object = datetime.date.today() print(date_object) ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py 2018-12-19 @@ -426,7 +426,7 @@ s2 = now.strftime("%d/%m/%Y, %H:%M:%S") print("s2:", s2) ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py time: 04:34:52 @@ -505,7 +505,7 @@ datetime_London = datetime.now(tz_London) print("London:", datetime_London.strftime("%m/%d/%Y, %H:%M:%S")) ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py Local time: 2018-12-20 13:10:44.260462 diff --git a/docs/py/61.md b/docs/py/61.md index b91de03..4e04f1b 100644 --- a/docs/py/61.md +++ b/docs/py/61.md @@ -181,7 +181,7 @@ s = time.mktime(t) print("\s:", seconds) ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py t1: time.struct_time(tm_year=2018, tm_mon=12, tm_mday=27, tm_hour=15, tm_min=49, tm_sec=29, tm_wday=3, tm_yday=361, tm_isdst=0) @@ -225,7 +225,7 @@ time_string = time.strftime("%m/%d/%Y, %H:%M:%S", named_tuple) print(time_string) ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py 12/28/2018, 09:47:41 diff --git a/docs/py/62.md b/docs/py/62.md index 6540392..f883eec 100644 --- a/docs/py/62.md +++ b/docs/py/62.md @@ -108,7 +108,7 @@ t1.start() t2.start() ``` -When you run the program, the output will be something like: +当您运行程序时,输出将类似于: ```py Hello diff --git a/docs/swift/33.md b/docs/swift/33.md index cde5c03..b2c818f 100644 --- a/docs/swift/33.md +++ b/docs/swift/33.md @@ -85,7 +85,7 @@ let result = factorial(of: x) print("The factorial of \(x) is \(result)") ``` -When you run the following program, the output will be: +当您运行以下程序时,输出将是: ```swift The factorial of 4 is 24 -- GitLab