program2_03a.c
来自「[C语言入门经典(第4版)]整本书的源码!值得推荐!全部是最简单的源码!」· C语言 代码 · 共 18 行
C
18 行
/* Program 2.3A Using more variables */
/* This variation on Program 2.3 does not compile */
#include <stdio.h>
int main(void)
{
int brothers; /* Declare a variable called brothers */
int brides; /* and a variable called brides */
brothers = 7; /* Store 7 in the variable brothers */
brides = 7; /* Store 7 in the variable brides */
/* Display some output */
printf("%d brides for %d brothers", Brides, brothers);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?