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

📄 twice.c

📁 linux下的C语言开发
💻 C
字号:
/*-*//******************************************************** * Name:						* *	print terms					* *							* * Usage:						* *	Run it and get some simple answers.		* *							* * Purpose:						* *	Demonstrates printing the results of simple	* *	equations.					* ********************************************************//*+*/#include <stdio.h>int term;       /* term used in two expressions */int main(){    term = 3 * 5;    printf("Twice %d is %d\n", term, 2*term);    printf("Three times %d is %d\n", term, 3*term);    return (0);}

⌨️ 快捷键说明

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