【程序设计天梯赛】L1-1 嫑废话上代码

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 
using namespace std ;

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

你可能感兴趣的:(PTA,c++,c语言)