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

📄 ex4_6.cpp

📁 纯粹是学习专用~
💻 CPP
字号:
#include<iostream.h>
void fun(){
	auto int t=5;					// fun()中的局部变量,auto可省略
	cout<<"fun()中的t="<<t<<endl;
}
void main(){
	float t=3.5;					//main()函数中的局部变量
	cout<<"main()中的t="<<t<<endl;
	fun();
	cout<<"main()中的t="<<t<<endl;
}

⌨️ 快捷键说明

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