获取你自己的
网站
×
更改方向
更改主题,深色/浅色
前往 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; }
请输入您的名字,然后按回车键