小白程序员必看:收藏这份智能体工程指南,轻松驾驭大模型生产难题!
2026/4/30 7:18:47
题目ID:L1-065
分数:5分
语言:Java / Python
Linux 之父 Linus Torvalds 的名言是:“Talk is cheap. Show me the code.”(嫑废话,上代码)。本题就请你直接在屏幕上输出这句话。
本题没有输入。
在一行中输出Talk is cheap. Show me the code.
(无)
Talk is cheap. Show me the code.这是一道签到题,考查最基本的输出语句使用:
publicclassMain{publicstaticvoidmain(String[]args){System.out.print("Talk is cheap. Show me the code.");}}print('Talk is cheap. Show me the code.')| 输入 | 输出 | 结果 |
|---|---|---|
| (无) | Talk is cheap. Show me the code. | ✅ |
这是一道最简单的入门题,属于 PTA L1 级别的签到题,主要目的是让参赛者熟悉在线评测系统的输入输出方式。