PAT基礎編程題目-7-11 分段計算居民水費

PAT基礎編程題目-7-11 分段計算居民水費

題目詳情

在這裏插入圖片描述

題目地址:https://pintia.cn/problem-sets/14/problems/791

解答

C語言版

#include<stdio.h>
int main() {
	int x;
	float y;
	scanf("%d", &x);
	if (x <= 15)
		y = 4 * x / 3.0;
	else 
		y = 2.5 * x - 17.5;
	printf("%.2f", y);
	return 0;
}

在這裏插入圖片描述

C++版

#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
	int x;
	float y;
	cin >> x;
	if (x <= 15)
		y = 4 * x / 3.0;
	else
		y = 2.5 * x - 17.5;
	cout << fixed << setprecision(2) << y;
	return 0;
}

在這裏插入圖片描述

Java版

import java.text.DecimalFormat;
import java.util.Scanner;
public class Main{

	public static void main(String[] args) {
		int x = 0;
		float y=0;
		Scanner scanner = new Scanner(System.in);
		if (scanner.hasNext()) {
			x =scanner.nextInt();
		}
		scanner.close();
		if (x<=15) {
			y = (float) (4*x/3.0);
		}else {
			y = (float) (2.5*x-17.5);
		}
		DecimalFormat decimalFormat = new DecimalFormat("0.00");
		System.out.println(decimalFormat.format(y));

	}

}

在這裏插入圖片描述

創作不易,喜歡的話加個關注點個贊,謝謝謝謝謝謝!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章