Skip to content

Commit

Permalink
Using a variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Feb 8, 2019
1 parent 0bd9ea5 commit 3f63d8c
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 7 deletions.
45 changes: 42 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ C 语言是一种功能强大、简洁的计算机语言,通过它可以编写
- [创建第一个程序](#创建第一个程序)
- [编译源码](#编译源码)
- [添加注释](#添加注释)
- [使用变量](#使用变量)
- [使用多个变量](#使用多个变量)

## 创建第一个程序

Expand Down Expand Up @@ -36,15 +38,52 @@ Hello World
/**
* Written byu Kenny Wong
* Copyright 2019
*
*/

#include <stdio.h>

// 每个程序总是从 main 这个函数开始执行
int main()
{
// 这里是单行注释输出日志
printf("Hello world!");
printf("Hello world!"); // 这里是单行注释输出日志
return 0; // main 函数 返回了个 0,表示正常终止程序,非 0 表示异常
}
```

## 使用变量

[使用变量实例源码](example/demo2/using_a_variable.c)

```c
#include <stdio.h>

int main(void)
{
int salary; // 声明一个名为 salary 的变量
salary = 10000; // 将 10000 存储在 salary 中
printf("My salary is %d.\n", salary);
return 0;
}
```
## 使用多个变量
[使用多个变量实例源码](example/demo2/using_more_variables.c)
```c
#include <stdio.h>
int main(void)
{
int brothers; // 声明一个名为 brothers 的变量
int brides; // 和一个叫做 brides 的变量
brothers = 7; // 将 7 存储在变量 brothers 中
brides = 7; // 将 7 存储在变量 brides 中
// 输出变量内容
printf("%d brides for %d brothers\n", brides, brothers);
return 0;
}
```
Binary file removed example/demo1/hello
Binary file not shown.
7 changes: 3 additions & 4 deletions example/demo1/hello.c
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
/**
* Written byu Kenny Wong
* Copyright 2019
*
*/

#include <stdio.h>

// 每个程序总是从 main 这个函数开始执行
int main()
{
// 这里是单行注释输出日志
printf("Hello world!");
return 0;
printf("Hello world!"); // 这里是单行注释输出日志
return 0; // main 函数 返回了个 0,表示正常终止程序,非 0 表示异常
}
9 changes: 9 additions & 0 deletions example/demo2/using_a_variable.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <stdio.h>

int main(void)
{
int salary; // 声明一个名为 salary 的变量
salary = 10000; // 将 10000 存储在 salary 中
printf("My salary is %d.\n", salary);
return 0;
}
14 changes: 14 additions & 0 deletions example/demo2/using_more_variables.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <stdio.h>

int main(void)
{
int brothers; // 声明一个名为 brothers 的变量
int brides; // 和一个叫做 brides 的变量

brothers = 7; // 将 7 存储在变量 brothers 中
brides = 7; // 将 7 存储在变量 brides 中

// 输出变量内容
printf("%d brides for %d brothers\n", brides, brothers);
return 0;
}

0 comments on commit 3f63d8c

Please sign in to comment.