⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vc0101.cpp

📁 VC例题源代码,书本上的。。几乎是通用的
💻 CPP
字号:
//example 1-1
#include <iostream.h>
void main()
{
	int p,q,r;
	cout<<"please input two integer numbers:"<<endl;
	cin>>p>>q;
	if(p<q)
	{
		r=p;
		p=q;
		q=r;
	}
	r=p%q;
	while(r!=0)
	{
		p=q;
		q=r;
		r=p%q;
	}
	cout<<"The maximum common divisor is "<<q<<"."<<endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -