求阶梯水费 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<=15) y=2*x; else y=30+(x-1…… 题解列表 2019年05月06日 0 点赞 0 评论 923 浏览 评分:0.0
1980: 求阶梯水费 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int x; …… 题解列表 2023年10月17日 0 点赞 0 评论 119 浏览 评分:0.0
1980: 求阶梯水费。三目真好用 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int num,total=0; scanf("%d",&num); total+=num*2…… 题解列表 2021年03月05日 0 点赞 0 评论 167 浏览 评分:0.0
求阶梯水费-题解(C语言代码) 摘要: #include int main() { int x; scanf("%d",&x); if(x…… 题解列表 2019年06月18日 0 点赞 0 评论 609 浏览 评分:0.0
1980: 求阶梯水费 摘要: 无脑 if - elseimport java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2022年03月21日 0 点赞 0 评论 102 浏览 评分:0.0
求阶梯水费-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,price=0; scanf("%d",&x); if(x<15) printf("%d",2*x…… 题解列表 2020年08月25日 0 点赞 0 评论 206 浏览 评分:0.0
求阶梯水费-题解(C语言代码) 摘要: #include "stdio.h" int main() { int x,y; scanf("%d",&x); if(x…… 题解列表 2020年02月16日 0 点赞 0 评论 292 浏览 评分:0.0
求阶梯水费-题解(C语言代码) 摘要:解题思路:注意事项:注意包含15!!!!!参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=15) b=2*a; if…… 题解列表 2020年12月01日 0 点赞 0 评论 294 浏览 评分:0.0
求阶梯水费 (C语言代码) 摘要:解题思路:看代码就完事了注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<15) …… 题解列表 2019年01月26日 6 点赞 0 评论 1088 浏览 评分:0.0