其他分享
首页 > 其他分享> > L1-065 嫑废话上代码 (5 分)

L1-065 嫑废话上代码 (5 分)

作者:互联网

Linux 之父 Linus Torvalds 的名言是:“Talk is cheap. Show me the code.”(嫑废话,上代码)。本题就请你直接在屏幕上输出这句话。

输入格式:
本题没有输入。

输出格式:
在一行中输出 Talk is cheap. Show me the code.。
输入样例:

输出样例:

Talk is cheap. Show me the code.

解题思路:

代码:

#include <iostream>

using namespace std;

int main()
{
    cout<<"Talk is cheap. Show me the code."<<endl;
    return 0;
}

标签:me,输出,废话,code,065,Show,cheap,L1,Talk
来源: https://blog.csdn.net/m0_53115174/article/details/122444090