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

📄 term.c

📁 linux下的C语言开发
💻 C
字号:
/*-*//******************************************************** * Name:						* *	term -- compute the value of three terms	* *							* * Purpose						* *	demonstrate the use of variables.		* *							* * Notes:						* *	Demonstration program only, does nothing 	* *	very useful.					* ********************************************************//*+*/int term;       /* term used in two expressions */int term_2;     /* twice term */int term_3;     /* three times term */int main(){    term = 3 * 5;    term_2 = 2 * term;    term_3 = 3 * term;    return (0);}

⌨️ 快捷键说明

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