当前位置:网站首页>第二章编程练习
第二章编程练习
2020-11-08 16:17:00 【树大数媒201王婧】
第二章编程练习 1.打印姓名
#define NAME"Billie"
#define SURNAME"Eilish"
int main(void)
{
printf("%s %s\n",NAME,SURNAME);
printf("%s\n %s\n",NAME,SURNAME);
printf("%s",NAME);
printf("%s\n",SURNAME);
return 0;
}
2.打印姓名地址
#define NAME"Halsey"
#define ADDRESS"Washington,New Jersey,USA"
int main(void)
{
printf("%s\n",NAME);
printf("%s\n",ADDRESS);
return 0;
}```
3.年龄和天数
```#include <stdio.h>
int main(void)
{
int age,day;
age=17;
day=17*365;
printf("my age=%d days=%d",age,day);
return 0;
}```
4.输出jolly deny
```#include <stdio.h>
int jolly(void);
int deny(void);
int main(void){
jolly();
jolly();
jolly();
deny();
return 0;
}
int jolly(void){
printf("For he's a jolly good fellow!\n");
return 0;
}
int deny(void){
printf("Which nobody can deny!\n");
return 0;/*wj*/
}```
5.输出bric
```#include <stdio.h>
int br(void);
int ic(void);
int main(void){
br();
printf(",");
ic();
printf(",\n");
br();
printf("\n");
return 0;
}
int br(void){
printf("Brazil,Russia");
return 0;
}
int ic(void)
{
printf("India,China");
return 0;//wj
}```
6.计算toes
```#include <stdio.h>
int main(void){
int toes;
toes=10;
printf("The Variablem toes=%d.\n",toes);
printf("donble toes=%d.\n",2*toes);
printf("toes'square=%d.\n",toes*toes);
return 0;
}```
7.smile
```int smile(void);
#include <stdio.h>
int main(void) {
smile();smile();smile();
printf("\n");
smile;smile;
printf("\n");
smile;
printf("n");
return 0;
}
int smile(void){
printf("smile!");
return 0;
}```
8.one-three
```#include <stdio.h>
int one_three(void);
int two(void);
int main(void){
printf("Starting now:\n");
one_three();
printf("Done!\n");
return 0;
}
int one_three(void){
printf("one\n");
two();
printf("three\n");
return 0;
}
int two(void){
printf("two\n");
return 0;
}```
版权声明
本文为[树大数媒201王婧]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4774086/blog/4708234
边栏推荐
- LiteOS-消息队列
- Elasticsearch learning one (basic introduction)
- 2035我们将建成这样的国家
- On DSA of OpenGL
- Workers, workers soul, draw lifelong members, become a person!
- Do these mistakes in your resume affect your annual salary of one million?
- Framework - SPI four modes + general device driver implementation - source code
- 构建者模式(Builder pattern)
- 我用 Python 找出了删除我微信的所有人并将他们自动化删除了
- 技术总监7年总结,如何进行正确的沟通?
猜你喜欢

Station B STM32 video learning

华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧

机械硬盘随机IO慢的超乎你的想象

STM32CubeIDE下载安装-GPIO基本配置操作-Debug调试(基于CMSIS DAP Debug)

Talking about, check the history of which famous computer viruses, 80% of the people do not know!

Flink from introduction to Zhenxiang (7. Sink data output file)

Interpretation of deepmind's latest paper: the causal reasoning algorithm in discrete probability tree is proposed for the first time

Millet and oppo continue to soar in the European market, and Xiaomi is even closer to apple

我用 Python 找出了删除我微信的所有人并将他们自动化删除了

三、函数的参数
随机推荐
10 common software architecture patterns
Solution to the problem of offline connection between ADB and mobile phone
On DSA of OpenGL
markdown使用
基于阿里云日志服务快速打造简版业务监控看板
这几个C++的坑,一旦踩中了,加班是肯定避免不了了!
Essential for back-end programmers: distributed transaction Basics
腾讯:阿里的大中台虽好,但也不是万能的!
Builder pattern
京东落地DevOps平台时爆发的冲突如何解决?
阿里云视频云技术专家 LVS 演讲全文:《“云端一体”的智能媒体生产制作演进之路》
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
Build simple business monitoring Kanban based on Alibaba cloud log service
Arduino IDE搭建ESP8266开发环境,文件下载过慢解决方法 | ESP-01制作WiFi开关教程,改造宿舍灯
LeanCloud 十月变化
学习记录并且简单分析
How to solve the conflict when JD landed on Devops platform?
Hello world of rabbitmq
Development of uni app imitating wechat app
10个常见的软件架构模式