program2_03a.c
来自「C语言入门经典一书的所有代码。书上面的所有代码均在此。希望大家喜欢」· 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 + -
显示快捷键?