西瓜编程(西瓜编程官网)

西瓜编程(西瓜编程官网)缩略图

编程求“卖西瓜”问题

编程求“卖西瓜”问题

static void Main(string[] args) { int n = 1020, day = 0; while(n>0) { n -= (n / 2 + 2); day++; } Console.WriteLine(day+ "天能卖完"); Console.ReadLine(); }

vb编程题 一农户现有西瓜500斤每天卖手中剩余西瓜总重量的一半并多5斤,计算并显示多少天能卖完?

vb编程题 一农户现有西瓜500斤每天卖手中剩余西瓜总重量的一半并多5斤,计算并显示多少天能卖完?

Private Sub Command1_Click() m = 500 n=0 While m > 0 n=n+1 m=m/2-5 Wend Print "500 斤西瓜" + Str(n) + "天卖完." End Sub

西瓜创客有没有知道的?

西瓜创客有没有知道的?

西瓜创客是在线少儿编程教育公司,面向7-12岁的小朋友提供编程启蒙与思维训练,提升孩子的学习力与创造力.

卖西瓜第一天卖出一半多俩个以后每天卖剩下的一半多俩个最后一天只剩1个 第一天一共有多少个西瓜如何编程

{[(2+2)*2+2]*2+2}*2,={[4*2+2]*2+2}*2,={10*2+2}*2,=22*2,=44(个);答:这堆西瓜共44个.

用pascal语言编程:将一堆西瓜分给三个人,把该堆西瓜中的一半又半个给第一个,剩下的一半又半个西瓜给第二个,把最后的一半又半个西瓜给第三个,每次分时并没切开西瓜,西瓜刚好分完,问三人各有多少西瓜

var a,b,c,x:integer; begin x:=1; while true do begin a:=x div 2 +1; if odd(x-a) then b:=(x-a) div 2 + 1; if odd(x-a-b) then c:=(x-a-b) div 2+1; if x=a+b+c then begin writeln(‘a=’,a,’b=’,b,’c=’,c); break;end; inc(x,2); end end.

一个水果店卖西瓜,5斤以上(包括5斤)1.5元/斤;5斤以下1.2元/斤, 编程帮助售货员计算西瓜价钱.

cls ‘清屏 input n ‘输入重量 if n<5 then ?n*1.2 else ?n*1.5 '判断单价,并计算、输出 end '结束 我觉得应该是5斤以上1.2元一斤,五斤以下1.5元一斤.就是 cls '清屏 input n '输入重量 if n<5 then ?n*1.5 else ?n*1.2 '判断单价,并计算、输出 end '结束 注:“?”可以代替“PRINT”

编程计算重量为m公斤的西瓜应付多少钱

#include

#include

//定义a,b,c三个价格

#define PRICE_A 14

#define PRICE_B 13

#define PRICE_C 12

int main(int argc, char* argv[], char* envp[])

{

if(argc != 2) return -1;

int num = atoi(argv[1]);

int price = 0;

switch(num / 5) //通过除5商取整判断价格的情况

{

case 0 : price = num * PRICE_A;break;

case 1 : price = num * (num % 5 == 0 ? PRICE_A : PRICE_B);break;

default : price = num * PRICE_C;

}

printf(“You must pay %d\n”, price);

return 0;

}

root@bt:/tmp# ./1 4

You must pay 56

root@bt:/tmp# ./1 5

You must pay 70

root@bt:/tmp# ./1 7

You must pay 91

root@bt:/tmp# ./1 10

You must pay 120

root@bt:/tmp# ./1 12

You must pay 144

root@bt:/tmp#

根据西瓜单个小于3千克,每千克5元;3~8千克,每千克7.5元,大于8千克,编写西瓜价款C#计算程序

class Program { static void Main(string[] args) { Calc(5); } static double Calc(double kg) { if (kg < 3)//小于3千克 { return kg * 5; } else if (kg >= 3 && kg < 8)//3~8千克 { return kg * 7.5; } else //大于8Kg { return kg * 10;//你没写价格,我不知道. } } }

请你“编程”!一一如何计算小西瓜的体积. 条件:1.一个长方体容器,…

方案一 1.西瓜放进容器中加满水 2.拿出西瓜 3.用量筒量水,并装满容器 4.量筒所量的水就是西瓜的体积 方案二 1.容器中加满书 2放入西瓜 3将满出的水装好 4.装好的水用量筒量出 满处的水的体积就是西瓜的体积 个人觉得方案一比较好

java编程

class fruit {

private String name;

private double weight;

public fruit(String name, double weight ) {

this.name = name;

this.weight = weight;

}

public fruit(fruit f) {

name = f.name;

weight = f.weight;

}

public void setName(String name) { this.name = name; }

public void setWeight(double weight) { this.weight = weight; }

public String getName() { return name; };

public double getWeight() { return weight; }

public String toString() {

return String.format(“[%s – %.2f]”, name, weight);

}

}

public class test {

public static void main(String[] args) {

fruit f = new fruit(“苹果”, 1.234);

System.out.println(f);

f.setName(“西瓜”);

System.out.println(f);

f.setWeight(3.456);

System.out.println(f);

fruit t = new fruit(f);

t.setName(“甜橙”);

System.out.println(t);

}

}