OpenJudge-1.12.02:短信计费

本文提供了使用Java和C++两种语言解决计算指定短信集合总资费问题的详细解题思路和代码实例,通过遍历短信字数,按每70字0.1元计费。
摘要由CSDN通过智能技术生成

一、题目链接

http://noi.openjudge.cn/ch0112/02/

二、解题思路(Java)

三、解题思路(C++)

四、Java程序

import java.util.Scanner;

public class Main {
    /**
     * 计算指定短信集合的总资费
     *
     * @param messages int类型的数组,存储指定短信集合中每条短信的字数
     * @return double类型的正浮点数,代表messages短信集合的总资费
     */
    public double cost(int[] messages) {
        double ans = 0; // messages短信集合的总资费
        /* 遍历messages短信集合的每一条短信字数 */
        for (int e : messages) {
            ans = ans + 0.1 * Math.ceil(e / 70.0); // 计算并更新总资费
        }
        return ans;
    }

    public static void main(String[] args) {
        Main test = new Main();
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int[] messages = new int[n];
        for (int i = 0; i < n; i++) {
            messages[i] = input.nextInt();
        }
        System.out.printf("%.1f", test.cost(messages));
    }
}

五、C++程序

#include <iostream>
#include <cmath>
using namespace std;

// 自定义函数,计算指定短信集合的总资费
double cost(int messages[], int n)
{
    double ans = 0; // messages短信集合的总资费
    /* 遍历messages短信集合的每一条短信字数 */
    for (int i = 0; i < n; i++)
    {
        ans = ans + 0.1 * ceil(messages[i] / 70.0); // 计算并更新总资费
    }
    return ans;
}

int main()
{
    int n;
    cin >> n;
    int messages[n];
    for (int i = 0; i < n; i++)
    {
        cin >> messages[i];
    }
    printf("%.1f", cost(messages, n)); // 调用cost函数完成计算
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江苏科技大学_计算机学院_潘磊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值