题解 1980: 求阶梯水费

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

筛选

求阶梯水费 (C语言代码)

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

1980: 求阶梯水费

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

1980: 求阶梯水费

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

求阶梯水费 (C语言代码)

摘要:解题思路:看代码就完事了注意事项:参考代码:#include<stdio.h>int main(){     int x,y;     scanf("%d",&x);     if(x<15)    ……