獲取你自己的
網站
×
更改方向
更改主題,深色/淺色
前往 Spaces
#include <stdio.h> int main() { // Create a string char firstName[30]; // Ask the user to input some text (name) printf("Enter your first name and press enter: \n"); // Get and save the text scanf("%s", firstName); // Output the text printf("Hello %s", firstName); return 0; }
請輸入您的名字,然後按回車鍵