题解 1980: 求阶梯水费

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1980 永远都是C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y,y3; scanf("%d",&x); if(x>15) {y=(x-15)*3+30; p……

1980: 求阶梯水费

摘要: 无脑 if - elseimport java.util.Scanner; public class Main {     public static void main(String[] ……

1980: 求阶梯水费

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int x; ……