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