#include int main(){FILE *fp=fopen("a1.txt", "w");char str[100];gets(str); //输入fputs(str,fp); //输出到文件puts(str); //输出到屏幕fclose(fp); return 0;}