SDUT JAVA lab 2.2

简介: SDUT JAVA lab 2.2

7-2 sdut-JAVA-training heart rate

分数 10

全屏浏览

切换布局

作者 马新娟

单位 山东理工大学

It is recommended that you maintain your training heart rate during an aerobic workout. Your training heart rate is computed as .7 * (220 – a) + .3 * r, where a is your age and r is your resting heart rate (your pulse when you first wake). Write a program that declares two variables, one to store a person's age 20 and the other to store a person's resting heart rate 69.15. Assign these variables values. Calculate and display this person's training heart rate.

Input Specification:

no input.

Output Specification:

Your training heart rate is 160.745.

Sample Input:

Sample Output:

Your training heart rate is 160.745.

代码长度限制

16 KB

时间限制

400 ms

内存限制

64 MB

栈限制

8192 KB

public class Main
{
public static void main(String [] args)
{
    
    int a=20;
    double r=69.15;
    double n=0.7*(220-a)+0.3*r;
    
    
    System.out.println("Your training heart rate is "+n+".");
}
}
目录
相关文章
|
8月前
|
Java
sdut java lab 7.1(法二好理解)
sdut java lab 7.1(法二好理解)
67 1
|
8月前
|
Java 应用服务中间件 AHAS
sdut java lab6主观题
sdut java lab6主观题
43 0
|
8月前
|
人工智能 Java
sdut java lab5
sdut java lab5
44 0
|
6月前
|
Java
java lab 8------7-1 sdut-JAVA-a contacts list(s)(multi-arraylists)
java lab 8------7-1 sdut-JAVA-a contacts list(s)(multi-arraylists)
29 0
|
8月前
|
Java
SDUT JAVA lab3.9
SDUT JAVA lab3.9
54 2
|
8月前
|
Java
SDUT Java lab6
SDUT Java lab6
34 0
|
8月前
|
Java
sdut java lab7单选
sdut java lab7单选
51 0
|
15天前
|
监控 Java
java异步判断线程池所有任务是否执行完
通过上述步骤,您可以在Java中实现异步判断线程池所有任务是否执行完毕。这种方法使用了 `CompletionService`来监控任务的完成情况,并通过一个独立线程异步检查所有任务的执行状态。这种设计不仅简洁高效,还能确保在大量任务处理时程序的稳定性和可维护性。希望本文能为您的开发工作提供实用的指导和帮助。
71 17
|
26天前
|
Java
Java—多线程实现生产消费者
本文介绍了多线程实现生产消费者模式的三个版本。Version1包含四个类:`Producer`(生产者)、`Consumer`(消费者)、`Resource`(公共资源)和`TestMain`(测试类)。通过`synchronized`和`wait/notify`机制控制线程同步,但存在多个生产者或消费者时可能出现多次生产和消费的问题。 Version2将`if`改为`while`,解决了多次生产和消费的问题,但仍可能因`notify()`随机唤醒线程而导致死锁。因此,引入了`notifyAll()`来唤醒所有等待线程,但这会带来性能问题。
Java—多线程实现生产消费者
|
11天前
|
缓存 安全 算法
Java 多线程 面试题
Java 多线程 相关基础面试题