java - 求解一道C语言的算法题?求各位大神帮忙
问题描述
问题解答
回答1:我想说不考虑算法选择要求 这就是个 2x+b = a 求x的小学数学题,如果对算法选择没要求就是输入a,b,输出(a-b)/2 和 (a+b)/ 2.输入的时候校验下a,b是不是同为奇数或偶数以及数字是不是超变量类型的可用范围,然后自己生成的case也要考虑这个问题
回答2:import java.math.BigInteger;import java.util.*;import java.io.*; public class Main { public static void main(String[] args) {Scanner input = new Scanner(System.in); String total, more;for(int t = 0; t < 10; ++t) { total = input.nextLine(); more = input.nextLine();; BigInteger total_apples = new BigInteger(total); BigInteger excess_apples = new BigInteger(more); BigInteger ans_1 = total_apples.add(excess_apples).pide(BigInteger.valueOf(2)); BigInteger ans_2 = total_apples.subtract(excess_apples).pide(BigInteger.valueOf(2)); System.out.println(ans_1); System.out.println(ans_2); } }}回答3:
通过你提供的材料,用c++编码如下,望指正!
/* if Natalia’s number of apples is x (x>0) apples:the number of apple extra:the number that Klaudia more tha Natalia (apples>extra>0) so x+extra+x=apples x = (apples-extra)/2*/#include <iostream>int main(int argc, char const *argv[]) { int apples,extra; //apples:the number of apple extra:the number that Klaudia more tha Natalia for (size_t i = 0; i < 10; i++) {std::cin>>apples>>extra; //inputtry{ //To determine whether the input is legal if(apples<=0 || extra<=0 || apples<extra || (apples-extra)%2!=0) throw apples; int Klaudia,Natalia; Natalia = (apples-extra)/2; //calculate Klaudia=Natalia+2; std::cout<<Klaudia<<’n’<<Natalia<<’n’; //output }catch(int e){ //ERROR std::cerr << 'ERROR! the number of applse is error.n' << ’n’;} } return 0;}
运行结果
相关文章:
1. 前端 - 集思广益,如何用CSS实现数字上面有一个点2. css3 让图片变成灰色(filter),但针对IE11浏览器无效3. html5 - 前端面试碰到了一个缓存数据的问题,来论坛上请教一下4. macos - 无法source activate python275. 我在导入模板资源时遇到无法显示的问题,请老师解答下6. css - 移动端 盒子内加overflow-y:scroll后 字体会变大7. PHPExcel表格导入数据库怎么导入8. java - butterknife怎么绑定多个view9. 运行python程序时出现“应用程序发生异常”的内存错误?10. java - 同步/异步与阻塞/非阻塞之间的差异具体是什么?

网公网安备