求阶梯水费 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<=15) y=2*x; else y=30+(x-1……
求阶梯水费-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,price=0; scanf("%d",&x); if(x<15) printf("%d",2*x……
1980: 求阶梯水费
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int x;
……
求阶梯水费-题解(C语言代码)
摘要: #include
int main()
{
int x;
scanf("%d",&x);
if(x……
求阶梯水费-题解(C语言代码)
摘要:解题思路:注意事项:注意包含15!!!!!参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d",&a); if(a<=15) b=2*a; if……
1980 永远都是C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y,y3; scanf("%d",&x); if(x>15) {y=(x-15)*3+30; p……
求阶梯水费-题解(C语言代码)
摘要: #include "stdio.h"
int main()
{
int x,y;
scanf("%d",&x);
if(x……
求阶梯水费 (C语言代码)
摘要:解题思路:看代码就完事了注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<15) ……
1980: 求阶梯水费。三目真好用
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int main(){
int num,total=0;
scanf("%d",&num);
total+=num*2……