首页 > 技术文章 > 7-67 What is a computer? (5分)

bigageyuan 2020-10-17 17:06 原文

本题要求编写程序,输出一个短句“What is a computer?”。

输入格式:

本题目没有输入。

输出格式:

在一行中输出短句“What is a computer?”。

 

 

#include<stdio.h>
int main()
{
 printf("What is a computer?\n");
 }

推荐阅读