当前位置:网站首页>Operation 2020.11.7-8
Operation 2020.11.7-8
2020-11-09 00:28:00 【TT sleepless La】
《 The first 2 Chapter 1-8 topic 》
1. Write a program , Call once printf( function , Print your first and last names on one line . Call again printf( function , Print your first name and last name on two lines . then , Call twice more printf( function , Print your first and last names on one line . The output should be as follows ( Of course, change the content of the example to your name ):
#include<stdio.h>
#include<stdlib.h>
#define NAME"tiantian"
#define SURNAME"sun"
int main(void)
{
printf("%s %s\n",NAME,SURNAME);
printf("%s\n%s\n",NAME,SURNAME);
printf("%s",NAME);
printf("%s\n",SURNAME);
system("pause");
return 0;
}

2. Write a program , Print your name and address
#include<stdio.h>
#include<stdlib.h>
#define NAME"suntiantian"
#define ADDRESS"NO.67 qianshuiwan,Taizhou"
int main(void)
{
printf("%s\n",NAME);
printf("%s\n",ADDRESS);
system("pause");
return 0;
}

3. Write a program , Convert your age to days , And show age and days , There's no need to think about leap years .
#include<stdio.h>
#include<stdlib.h>
#define DAYS_PER_YEAR 365
int main(void)
{
int age,days;
age = 19;
days=age*DAYS_PER_YEAR;
printf("You age is %d,and It is %d days.\n",age,days);
system("pause");
return 0;
}

4,4. Write a program , Generate the following output
For hes a jolly good fellow!
For he 's a jolly good fellow!
For he s a jolly good fellow!
Which nobody can deny!
except mainO Out of function , The program also calls two custom functions : A group called y jolly, Used before printing 3 strip
news , Call to print one at a time ; Another function is called deny, Print the last message
#include<stdio.h>
#include<stdlib.h>
int jolly(void);
int deny(void);
int main(void){
jolly();
jolly();
jolly();
deny();
system("pause");
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;
}

5.5. Write a program , Generate the following output .
Brazil, Russia, India, China
India, China,
Brazil, Russia
except main Out of function , The program also calls two custom functions : A group called br(), Call print once
”Brazil, Russia“;
The other one is called ic(), Call print once "india,China”. Other functions are in mainO function
To realize .

6. Write a program , Create an integer variable toes, And will toes Set to 10, The program also calculates toes Double and toes The square of . The program should print 3 It's worth , And describe them separately to show the difference .
#include<stdio.h>
#include<stdlib.h>
int main(void){
int toes;
toes-10;
printf("The Variable toes = %d.\n",toes);
printf("double toes = %d.\n",2*toes);
printf("toes' square = %d.\n",toes*toes);
system("pause");
return 0;
}

版权声明
本文为[TT sleepless La]所创,转载请带上原文链接,感谢
边栏推荐
- Decorator (1)
- Huawei HCIA notes
- How to deploy pytorch lightning model to production
- 非阻塞的无界线程安全队列 —— ConcurrentLinkedQueue
- centos7下安装iperf时出现 make: *** No targets specified and no makefile found. Stop.的解决方案
- 第五章编程
- 分库分表的几种常见玩法及如何解决跨库查询等问题
- 写时复制集合 —— CopyOnWriteArrayList
- Mobile big data own website precise marketing and accurate customer acquisition
- When iperf is installed under centos7, the solution of make: * no targets specified and no makefile found. Stop
猜你喜欢

几行代码轻松实现跨系统传递 traceId,再也不用担心对不上日志了!

使用递增计数器的线程同步工具 —— 信号量,它的原理是什么样子的?

Python features and building environment

A few lines of code can easily transfer traceid across systems, so you don't have to worry about losing the log!

大数据软件学习入门技巧

The road of cloud computing - going to sea - small goal: Hello world from. Net 5.0 on AWS

Have you ever thought about why the transaction and refund have to be split into different tables

How does semaphore, a thread synchronization tool that uses an up counter, look like?

The interface testing tool eolinker makes post request

SQL语句的执行
随机推荐
表连接
Linked list
What courses will AI programming learn?
代码保存
1.操作系统是干什么的?
[200 interview experience], programmer interview, common interview questions analysis
Copy on write collection -- copyonwritearraylist
Installation record of SAP s / 4hana 2020
c++11-17 模板核心知识(二)—— 类模板
计算机网络 应用层
如何通过Sidecar自定义资源减少Istio代理资源消耗
梁老师小课堂|谈谈模板方法模式
First development of STC to stm32
How to get started with rabbitmq
Realization of file copy
Are there many Python application scenarios?
实现图片的复制
Flink的DataSource三部曲之三:自定义
教你如何 分析 Android ANR 问题
AI人工智能编程培训学什么课程?