当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- Rabbitmq (1) - basic introduction
- 重返全球第三,小米做对了什么?
- Blockchain weekly: the development of digital currency is written into the 14th five year plan; Biden invited senior adviser of MIT digital currency program to join the presidential transition team; V
- Huawei has an absolute advantage in the 5g mobile phone market, and the market share of Xiaomi is divided by the market survey organization
- 漫画:寻找股票买入卖出的最佳时机(整合版)
- 构建者模式(Builder pattern)
- I used Python to find out all the people who deleted my wechat and deleted them automatically
- [Python 1-6] Python tutorial 1 -- number
- AQS解析
- RestfulApi 学习笔记——父子资源(四)
猜你喜欢

浅谈单调栈

How to solve the conflict when JD landed on Devops platform?

谷歌开源能翻译101种语言的AI模型,只比Facebook多一种

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

Get PMP certificate at 51CTO College

The birth of a new integrated memory and computing chip is conducive to the application of artificial intelligence~

阿里云视频云技术专家 LVS 演讲全文:《“云端一体”的智能媒体生产制作演进之路》

原创 | 数据资产确权浅议

This year's salary is 35W +! Why is the salary of Internet companies getting higher and higher?

Enabling education innovation and reconstruction with science and technology Huawei implements education informatization
随机推荐
Q & A and book giving activities of harbor project experts
Leancloud changes in October
Flink从入门到真香(3、从集合和文件中读取数据)
C + + things: from rice cookers to rockets, C + + is everywhere
打工人,打工魂,抽终身会员,成为人上人!
软件开发中如何与人协作? | 每日趣闻
阿里云视频云技术专家 LVS 演讲全文:《“云端一体”的智能媒体生产制作演进之路》
The first open source Chinese Bert pre training model in the financial field
喝汽水,1瓶汽水1元,2个空瓶可以换一瓶汽水,给20元,可以多少汽水
Huawei has an absolute advantage in the 5g mobile phone market, and the market share of Xiaomi is divided by the market survey organization
How does Alibaba cloud's maxcompute add (original ODPs) work?
Builder pattern
Rust: performance test criteria Library
“他,程序猿,35岁,被劝退”:不要只懂代码,会说话,胜过10倍默默努力
How to solve the conflict when JD landed on Devops platform?
How to make a correct summary for 7 years?
Enabling education innovation and reconstruction with science and technology Huawei implements education informatization
Why is Schnorr Signature known as the biggest technology update after bitcoin segwit
Implementation of verification code recognition in Python opencv pytesseract
Google's AI model, which can translate 101 languages, is only one more than Facebook