mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-13 11:21:42 +08:00
add leetcode problem-cn part6
This commit is contained in:
26
算法题(国内版)/problem (Chinese)/第十行 [tenth-line].html
Normal file
26
算法题(国内版)/problem (Chinese)/第十行 [tenth-line].html
Normal file
@@ -0,0 +1,26 @@
|
||||
<p>给定一个文本文件 <code>file.txt</code>,请只打印这个文件中的第十行。</p>
|
||||
|
||||
<p><strong>示例:</strong></p>
|
||||
|
||||
<p>假设 <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>
|
Reference in New Issue
Block a user