当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- RabbitMQ快速入门详解
- Linked blocking queue based on linked list
- How to get started with rabbitmq
- On buffer overflow
- 大数据软件学习入门技巧
- C/C++编程笔记:指针篇!从内存理解指针,让你完全搞懂指针
- Have you ever thought about why the transaction and refund have to be split into different tables
- Chapter 5 programming
- Are there many Python application scenarios?
- 如何让脚本同时兼容Python2和Python3?
猜你喜欢
APP 莫名崩溃,开始以为是 Header 中 name 大小写的锅,最后发现原来是容器的错!
文件拷贝的实现
1.操作系统是干什么的?
Several common playing methods of sub database and sub table and how to solve the problem of cross database query
How to analyze Android anr problems
STS安装
Copy on write collection -- copyonwritearraylist
AQS 都看完了,Condition 原理可不能少!
VIM 入门手册, (VS Code)
Python的特性与搭建环境
随机推荐
深度优先搜索和广度优先搜索
Python features and building environment
对象
How does semaphore, a thread synchronization tool that uses an up counter, look like?
Copy on write collection -- copyonwritearraylist
Combine theory with practice to understand CORS thoroughly
The vowels in the inverted string of leetcode
leetcode之反转字符串中的元音字母
c++11-17 模板核心知识(二)—— 类模板
写时复制集合 —— CopyOnWriteArrayList
Copy on write collection -- copyonwritearraylist
C/C++编程笔记:指针篇!从内存理解指针,让你完全搞懂指针
Fiddler无法正常抓取谷歌等浏览器的请求_解决方案
Queue with two stacks
你有没有想过为什么交易和退款要拆开不同的表
SAP S/4HANA 2020安装实录
Linked blocking queue based on linked list
When iperf is installed under centos7, the solution of make: * no targets specified and no makefile found. Stop
计算机网络 应用层
1.操作系统是干什么的?