n只猴子,m只水牛,每只水牛能带3只猴子;
n只狗,m只船,每只船牛能带10只猴子;
3条回答 默认 最新
current_person 2016-07-26 08:32关注public class Hello {
public static void main(String[] args) { int n = 10; int[] monkeys = new int[n]; }}
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
public class Hello {
public static void main(String[] args) {
int n = 10;
int[] monkeys = new int[n];
}
}