当前位置:网站首页>Chapter 5 programming
Chapter 5 programming
2020-11-08 15:22:00 【Raspberry 201 Yang Feifan 202005018130】
5.1 ### Time shift Seconds to minutes
#include<stdio.h>
#define p 60
void main()
{
int a, b;
printf(" Enter time seconds =");
scanf_s("%d", &a);
while (a > 0)
{
printf("%d second =%d Hours %d second \n", a, a / p, a % p);
printf(" Enter time seconds =");
scanf_s("%d", &a);
}
}
5.2
Output the input number according to the size to Digital plus 10
#include<stdio.h>
void main()
{
int a, b;
printf(" Enter the number you want : ");
scanf_s("%d", &a);
b = a;
while (b <= a + 10)
{
printf("%d\n", b);
b++;
}
}
5.3
Week shift
#include<stdio.h>
void main()
{
int a, b, c;
printf(" Enter the number of days :");
scanf_s("%d", &a);
while (a > 0)
{
printf("%d God =%d Zhou %d God \n", a, a / 7, a % 7);
printf(" Enter the number of days :");
scanf_s("%d",& a);
}
}
5.4
Height shift
#include<stdio.h>
void main()
{
float a;
printf(" Enter your height :");
scanf_s("%f", &a);
for (; a > 0;)
{
printf("%.0fcm=%.2f feet %.2f Inch \n", a, a / 30.48, a / 2.54);
printf(" Enter your height :");
scanf_s("%d", &a);
}
}
5.5
Making money calculation
#include<stdio.h>
void main()
{
int a, b;
printf(" Input The money you make in a day :\n");
scanf_s("%d", &a);
printf(" Enter the number of days :\n");
scanf_s("%d", &b);
printf(" I've made a lot of money %d element ", a * b);
}
5.6
improvement 5.5
void main()
{
int b, qian, c;
qian = 0;
printf(" Enter the number of days :\n");
scanf_s("%d", &b);
for (c = 1; c <= b; c++)
{
qian = c * c;
printf(" The first %d God earned %d\n", c, c * c);
}
}
5.8 Mod
#include<stdio.h>
void main()
{
int a, b, c;
printf(" Enter the number of fish :\n");
scanf_s("%d", &a);
printf(" Input the number of fish \n");
scanf_s("%d", &b);
printf(" Now the number of fish is :\n", b);
printf("%d more than %d =%d\n", b,a,b%a);
for (; b > 0;)
{
printf(" Input the number of fish \n");
scanf_s("%d", &b);
printf(" Now the number of fish is :\n",b );
printf("%d more than %d =%d\n", b, a, b % a);
}
}
5.9
Temperature conversion
#include<stdio.h>
void main()
{
double a;
printf(" Enter the temperature Fahrenheit =");
scanf_s("%lf", &a);
printf(" The temperature in centigrade is =%.2lf \n Show the temperature =%.2lf\n", (a - 32) * 5.0 / 9.0, a + 273.16);
while (a > 0 || a <= 0)
{
printf(" Enter the temperature Fahrenheit =\n");
scanf_s("%lf", &a);
printf(" The temperature in centigrade is =%.2lf \n Show the temperature =%.2lf\n", (a - 32) * 5 / 9.0, a + 273.16);
}
}
/5.9 problem It should be confirmed that the input value is double Even if the input is not a number It's also stored in numbers I don't know how to guarantee When the input is a letter Make sure the program exits correctly / Once you enter a non numeric program, it goes wrong And it can't stop Orz
版权声明
本文为[Raspberry 201 Yang Feifan 202005018130]所创,转载请带上原文链接,感谢
边栏推荐
- 一文读懂机器学习“数据中毒”
- 浅谈OpenGL之DSA
- I used Python to find out all the people who deleted my wechat and deleted them automatically
- How to write a resume and project
- AI weekly: employees are allowed to voluntarily reduce salary; company response: employees are happy and satisfied; tiger tooth HR takes employees out of the company; Sweden forbids Huawei ZTE 5g equi
- Introduction to mongodb foundation of distributed document storage database
- 构建者模式(Builder pattern)
- What is the database paradigm
- .NET 大数据量并发解决方案
- Flink从入门到真香(3、从集合和文件中读取数据)
猜你喜欢
Get PMP certificate at 51CTO College
Flink: from introduction to Zhenxiang (3. Reading data from collection and file)
Leancloud changes in October
Flink from introduction to Zhenxiang (7. Sink data output file)
How to write a resume and project
Builder pattern
刚刚好,才是最理想的状态
Welcome to offer, grade P7, face-to-face sharing, 10000 words long text to take you through the interview process
Flink from introduction to Zhenxiang (10. Sink data output elasticsearch)
This paper analyzes the top ten Internet of things applications in 2020!
随机推荐
AQS analysis
How to solve the conflict when JD landed on Devops platform?
android基础-CheckBox(复选框)
数据库连接报错之IO异常(The Network Adapter could not establish the connection)
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
这次,快手终于比抖音'快'了!
Ubuntu20.04下访问FTP服务器乱码问题+上传文件
喜获蚂蚁offer,定级p7,面经分享,万字长文带你走完面试全过程
STM32CubeIDE下载安装-GPIO基本配置操作-Debug调试(基于CMSIS DAP Debug)
Golang ICMP Protocol detects viable hosts
nat转换的ip跟端口ip不相同的解决方法
Gopherchina 2020 Conference
2035我们将建成这样的国家
Talking about, check the history of which famous computer viruses, 80% of the people do not know!
小米、OPPO在欧洲市场继续飙涨,小米更是直逼苹果
浅谈,盘点历史上有哪些著名的电脑病毒,80%的人都不知道!
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
Do these mistakes in your resume affect your annual salary of one million?
The first open source Chinese Bert pre training model in the financial field
Google's AI model, which can translate 101 languages, is only one more than Facebook