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

📄 6_28.cpp

📁 10个比较经典的C++程序。初学者就先多学习学习别人吧。
💻 CPP
字号:
#include <iostream> 
using namespace std; 
int main() 
{	double a,b; 
	double *p=&a,*q=&b;  
	//判断两个指针是否指向同一块内存位置
	if (p==q)	  	cout<<"The pointer of p is equal to q"<<endl;
	else if(p>q)	cout<<"The address of a :"<<p<<" is larger than the address of b:"<<q;
	else	  		cout<<"The address of a :"<<p<<" is smaller than the address of b:"<<q;  
	return 0; 
}

⌨️ 快捷键说明

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