当前位置:网站首页>第二章编程练习
第二章编程练习
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
边栏推荐
- The first open source Chinese Bert pre training model in the financial field
- 2020-11-05
- 构建者模式(Builder pattern)
- 构建者模式(Builder pattern)
- Liteos message queuing
- I used Python to find out all the people who deleted my wechat and deleted them automatically
- 谷歌开源能翻译101种语言的AI模型,只比Facebook多一种
- I used Python to find out all the people who deleted my wechat and deleted them automatically
- 学习记录并且简单分析
- Improvement of rate limit for laravel8 update
猜你喜欢
How to solve the difference between NAT IP and port IP
华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧
Builder pattern
Flink from introduction to Zhenxiang (7. Sink data output file)
Xiaoqingtai officially set foot on the third day of no return
2035我们将建成这样的国家
10 common software architecture patterns
漫画:寻找股票买入卖出的最佳时机(整合版)
Arduino IDE搭建ESP8266开发环境,文件下载过慢解决方法 | ESP-01制作WiFi开关教程,改造宿舍灯
2020-11-05
随机推荐
2035 we will build such a country
On DSA of OpenGL
Suitable for C / C + + novice learning some projects, do not give me to miss!
喝汽水,1瓶汽水1元,2个空瓶可以换一瓶汽水,给20元,可以多少汽水
浅谈,盘点历史上有哪些著名的电脑病毒,80%的人都不知道!
浅谈OpenGL之DSA
Framework - SPI four modes + general device driver implementation - source code
模板引擎的整理归纳
Returning to the third place in the world, what did Xiaomi do right?
基于阿里云日志服务快速打造简版业务监控看板
Flink的sink实战之一:初探
It's just right. It's the ideal state
Google's AI model, which can translate 101 languages, is only one more than Facebook
. net large data concurrency solution
WebGL 水波及焦散(刻蚀)的渲染总结
Flink: from introduction to Zhenxiang (6. Flink implements UDF function - realizes more fine-grained control flow)
What is SVG?
2020-11-05
C++的那些事儿:从电饭煲到火箭,C++无处不在
Learn to record and analyze