1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-18 19:46:47 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 12:43:11 +08:00
parent 58bbdfd57c
commit 2b0511d272
10721 changed files with 8123 additions and 8119 deletions

View File

@@ -0,0 +1,26 @@
<p>给定一个文本文件&nbsp;<code>file.txt</code>,请只打印这个文件中的第十行。</p>
<p><strong>示例:</strong></p>
<p>假设&nbsp;<code>file.txt</code> 有如下内容:</p>
<pre>Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Line 10
</pre>
<p>你的脚本应当显示第十行:</p>
<pre>Line 10
</pre>
<p><strong>说明:</strong><br>
1. 如果文件少于十行,你应当输出什么?<br>
2. 至少有三种不同的解法,请尝试尽可能多的方法来解题。</p>