当前位置:网站首页>第二章编程练习
第二章编程练习
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
边栏推荐
- Android Basics - check box
- 性能压测时,并发压力增加,系统响应时间和吞吐量如何变化
- Flink from introduction to Zhenxiang (10. Sink data output elasticsearch)
- On the concurrency of update operation
- 2035我们将建成这样的国家
- 喝汽水,1瓶汽水1元,2个空瓶可以换一瓶汽水,给20元,可以多少汽水
- 基于阿里云日志服务快速打造简版业务监控看板
- Liteos message queuing actual combat
- B站stm32视频学习
- 小米、OPPO在欧洲市场继续飙涨,小米更是直逼苹果
猜你喜欢

2035 we will build such a country

Essential for back-end programmers: distributed transaction Basics

Tencent, which is good at to C, how to take advantage of Tencent's cloud market share in these industries?

10 common software architecture patterns

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

CSP考试须知与各种小技巧

GopherChina 2020大会

Returning to the third place in the world, what did Xiaomi do right?

How to cooperate with people in software development? |Daily anecdotes

Improvement of rate limit for laravel8 update
随机推荐
wanxin finance
LiteOS-消息队列-实战
学习记录并且简单分析
技术总监7年总结,如何进行正确的沟通?
What are the necessary laws and regulations to know when entering the Internet?
Builder pattern
Talk about go code coverage technology and best practices
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
Flink from introduction to Zhenxiang (7. Sink data output file)
(O)ServiceManager分析(一)之BinderInternal.getContextObject
重返全球第三,小米做对了什么?
Improvement of rate limit for laravel8 update
markdown使用
Design by contract (DBC) and its application in C language
这几个C++的坑,一旦踩中了,加班是肯定避免不了了!
Station B STM32 video learning
Dev-c++在windows环境下无法debug(调试)的解决方案
Examples of unconventional aggregation
wanxin finance
Returning to the third place in the world, what did Xiaomi do right?