快速输入输出模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速输入输出模板相关的知识,希望对你有一定的参考价值。

template<class T> inline bool getd(T& x)
{
	int ch=getchar();
	bool neg=false;
	if(ch!=EOF && ch!=‘-‘ && !isdigit(ch)) ch=getchar();
	if(ch==EOF) return false;
	if(ch==‘-‘){
		neg=true;
		ch=getchar();
	}
	x=ch-‘0‘;
	while(isdigit(ch=getchar())) x=x*10+ch-‘0‘;
	if(neg) x=-x;
	return true;
}

template<class M> inline void putd(M x)
{
	int p=0;
	if(x<0){
		putchar(‘-‘);
		x=-x;
	}
	do{
		buf[p++]=x%10;
		x/=10;
	}while(x);
	for(int i=p-1;i>=0;i--) putchar(buf[i]+‘0‘);
	putchar(‘\n‘);
}

 

以上是关于快速输入输出模板的主要内容,如果未能解决你的问题,请参考以下文章

使用vscode快速建立vue模板

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

模板 - 快速输入输出

快速输入输出模板

vscode vue快速新建模板