摘要:
法一:scanf对于数字的读取来说,不读入空白和换行符,但读字符的时候则会读入 法二 输入两组数据后,才出现结果,两种方法中的printf中的换行符都是刷新缓冲区的作用 阅读全文
摘要:
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; char a,b,c; int main() { while(scanf("%c%c%c\n",&a,&b,&c)!=EOF)//这里读取格 阅读全文