#include <stdio.h> int main () { char a[10]; for (int i = 0; i < 10; i++) { scanf("%s", &a[i]); } if (a == 'How are you ?') { printf("I'm fine thank you."); } else { printf("请输入:How are you ?"); } return 0; }