java - 求解一道C语言的算法题?求各位大神帮忙
仅有的幸福
仅有的幸福 2017-05-16 13:24:29
0
3
607

仅有的幸福
仅有的幸福

全部回复(3)
大家讲道理

我想说不考虑算法选择要求 这就是个 2x+b = a 求x的小学数学题,如果对算法选择没要求就是输入a,b,输出(a-b)/2 和 (a+b)/ 2.
输入的时候校验下a,b是不是同为奇数或偶数以及数字是不是超变量类型的可用范围,然后自己生成的case也要考虑这个问题

为情所困

雷雷

淡淡烟草味

通过你提供的材料,用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;   //input
        try{
          //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;
}

运行结果

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!