在C語言中,可以使用scanf()
函數來輸入字符串。要輸入兩行字符串,可以按照以下步驟進行操作:
str1
和str2
。scanf()
函數分別輸入兩行字符串,可以使用%s
格式說明符來讀取字符串,如scanf("%s", str1)
。fgets()
函數來替代scanf()
函數,使用方法如下:fgets(str1, sizeof(str1), stdin)
。str1
和str2
中,可以按需求進行后續處理。下面是一個完整的示例代碼:
#include <stdio.h>
int main() {
char str1[100];
char str2[100];
printf("請輸入第一行字符串:");
scanf("%s", str1);
printf("請輸入第二行字符串:");
scanf("%s", str2);
printf("第一行字符串:%s\n", str1);
printf("第二行字符串:%s\n", str2);
return 0;
}
運行該程序后,會提示輸入兩行字符串,然后分別將輸入的字符串打印輸出。