帅气牛排

文章
4
资源
0
加入时间
2年10月21天

UVa 816 - Abbott's Revenge

题目内容见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=757这里贴出自己加了注释的代码,应该比较好理解了。源代码参考紫书 1 #include<cstdio> 2 #include<cst...

getc,getchar,getch,getche

Windows平台下:#include int getc(FILE *_File);    //从文件中读取一个字符,文件位置指示器后移一个int getchar(void);          //从stdin读取一个字符,回显(就是屏幕上显示输入的字符),等到输入的回车才结束,只取输入的第一个字符#include int getch(void);