testing-repository/cpp/vscode-test/stdafx.cpp

8 lines
129 B
C++
Raw Normal View History

2021-01-10 11:29:04 +08:00
#include <cstdio>
void print(){
fflush(stdin);
char str[57];
fgets(str,sizeof(str),stdin);
printf("%s\n",str);
}