1. 程式人生 > >本題要求編寫程式,輸出一個短句“Welcome to You!”。

本題要求編寫程式,輸出一個短句“Welcome to You!”。

輸入格式:

本題目沒有輸入。

輸出格式:

在一行中輸出短句“Welcome to You!”。

#include<stdio.h>
int main()
{
  printf("Welcome to You!");
  return 0;
}

歡迎討論