当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- Implementation of verification code recognition in Python opencv pytesseract
- We made a medical version of the MNIST dataset, and found that the common automl algorithm is not so easy to use
- 小青台正式踏上不归路的第3天
- 阿里撕下电商标签
- Is there no way out for older programmers?
- Examples of unconventional aggregation
- “他,程序猿,35岁,被劝退”:不要只懂代码,会说话,胜过10倍默默努力
- 区块链周报:数字货币发展写入十四五规划;拜登邀请MIT数字货币计划高级顾问加入总统过渡团队;委内瑞拉推出国营加密交易所
- 刚刚好,才是最理想的状态
- 小米、OPPO在欧洲市场继续飙涨,小米更是直逼苹果
猜你喜欢
android基础-CheckBox(复选框)
华为在5G手机市场占据绝对优势,市调机构对小米的市占出现分歧
Eight ways to optimize if else code
Don't release resources in finally, unlock a new pose!
浅谈,盘点历史上有哪些著名的电脑病毒,80%的人都不知道!
Rust: performance test criteria Library
Arduino IDE搭建ESP8266开发环境,文件下载过慢解决方法 | ESP-01制作WiFi开关教程,改造宿舍灯
2035 we will build such a country
后端程序员必备:分布式事务基础篇
Introduction to mongodb foundation of distributed document storage database
随机推荐
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
Flink从入门到真香(3、从集合和文件中读取数据)
C + + things: from rice cookers to rockets, C + + is everywhere
Get PMP certificate at 51CTO College
喜获蚂蚁offer,定级p7,面经分享,万字长文带你走完面试全过程
基于阿里云日志服务快速打造简版业务监控看板
Summary of template engine
Powershell 使用.Net对象发送邮件
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
别再在finally里面释放资源了,解锁个新姿势!
The birth of a new integrated memory and computing chip is conducive to the application of artificial intelligence~
2035我们将建成这样的国家
2020-11-05
The network adapter could not establish the connection
Gopherchina 2020 Conference
浅谈单调栈
Q & A and book giving activities of harbor project experts
构建者模式(Builder pattern)
阿里云的MaxCompute数加(原ODPS)用的怎样?
软件开发中如何与人协作? | 每日趣闻