Будь умным!


У вас вопросы?
У нас ответы:) SamZan.net

this b thisb

Работа добавлена на сайт samzan.net:

Поможем написать учебную работу

Если у вас возникли сложности с курсовой, контрольной, дипломной, рефератом, отчетом по практике, научно-исследовательской и любой другой работой - мы готовы помочь.

Предоплата всего

от 25%

Подписываем

договор

Выберите тип работы:

Скидка 25% при заказе до 9.11.2024

№9

package rivvnannja;

public class Test

{

   float a, b, c;

   float d;

   int n;

public Test (){

 a = 1;

 b = 1;

 c = 1;}

public Test(float a, float b, float c){

 this.a = a;

 this.b = b;

 this.c = c;}

public String toString(){

 return new String("a = "+this.a+ " b = " +this.b + " c = "+this.c+" d = "+this.d);}

public void setD ( ){

 this.d = (this.b * this.b) - (4 * this.a * this.c);}

public int countN (){

 if (this.d < 0) this.n = 0;

 else if (this.d == 0) this.n = 1;

 else this.n = 2;

 return this.n;}

public float[] getX (){

 float arr[];

 if (this.d < 0) {

  arr = null;}

 else if (this.d == 0) {

  arr = new float [1];

  arr[0] = (-this.b) / (2 * this.a);}

 else {

  arr = new float [2];

  arr[0] = (float) ((-this.b + Math.sqrt(this.d)) / (2 * this.a));

  arr[1] = (float) ((-this.b - Math.sqrt(this.d)) / (2 * this.a));}

 return arr;}

   public static void main(String args []){

    Test a = new Test (1,6,2);

    a.setD();

    a.countN();

    float arr[] = a.getX();

    System.out.println(a.toString());

    if (arr == null ){ System.out.println("koreniv nema"); }

    else  

     for (float i:arr){

      System.out.println("x = "+i);

     }    }     }

№9

package rivvnannja;

public class Test

{

   float a, b, c;

   float d;

   int n;

public Test (){

 a = 1;

 b = 1;

 c = 1;}

public Test(float a, float b, float c){

 this.a = a;

 this.b = b;

 this.c = c;}

public String toString(){

 return new String("a = "+this.a+ " b = " +this.b + " c = "+this.c+" d = "+this.d);}

public void setD ( ){

 this.d = (this.b * this.b) - (4 * this.a * this.c);}

public int countN (){

 if (this.d < 0) this.n = 0;

 else if (this.d == 0) this.n = 1;

 else this.n = 2;

 return this.n;}

public float[] getX (){

 float arr[];

 if (this.d < 0) {

  arr = null;}

 else if (this.d == 0) {

  arr = new float [1];

  arr[0] = (-this.b) / (2 * this.a);}

 else {

  arr = new float [2];

  arr[0] = (float) ((-this.b + Math.sqrt(this.d)) / (2 * this.a));

  arr[1] = (float) ((-this.b - Math.sqrt(this.d)) / (2 * this.a));}

 return arr;}

   public static void main(String args []){

    Test a = new Test (1,6,2);

    a.setD();

    a.countN();

    float arr[] = a.getX();

    System.out.println(a.toString());

    if (arr == null ){ System.out.println("koreniv nema"); }

    else  

     for (float i:arr){

      System.out.println("x = "+i);

     }    }     }

№9

package rivvnannja;

public class Test

{

   float a, b, c;

   float d;

   int n;

public Test (){

 a = 1;

 b = 1;

 c = 1;}

public Test(float a, float b, float c){

 this.a = a;

 this.b = b;

 this.c = c;}

public String toString(){

 return new String("a = "+this.a+ " b = " +this.b + " c = "+this.c+" d = "+this.d);}

public void setD ( ){

 this.d = (this.b * this.b) - (4 * this.a * this.c);}

public int countN (){

 if (this.d < 0) this.n = 0;

 else if (this.d == 0) this.n = 1;

 else this.n = 2;

 return this.n;}

public float[] getX (){

 float arr[];

 if (this.d < 0) {

  arr = null;}

 else if (this.d == 0) {

  arr = new float [1];

  arr[0] = (-this.b) / (2 * this.a);}

 else {

  arr = new float [2];

  arr[0] = (float) ((-this.b + Math.sqrt(this.d)) / (2 * this.a));

  arr[1] = (float) ((-this.b - Math.sqrt(this.d)) / (2 * this.a));}

 return arr;}

   public static void main(String args []){

    Test a = new Test (1,6,2);

    a.setD();

    a.countN();

    float arr[] = a.getX();

    System.out.println(a.toString());

    if (arr == null ){ System.out.println("koreniv nema"); }

    else  

     for (float i:arr){

      System.out.println("x = "+i);

     }    }     }

№9

package rivvnannja;

public class Test

{

   float a, b, c;

   float d;

   int n;

public Test (){

 a = 1;

 b = 1;

 c = 1;}

public Test(float a, float b, float c){

 this.a = a;

 this.b = b;

 this.c = c;}

public String toString(){

 return new String("a = "+this.a+ " b = " +this.b + " c = "+this.c+" d = "+this.d);}

public void setD ( ){

 this.d = (this.b * this.b) - (4 * this.a * this.c);}

public int countN (){

 if (this.d < 0) this.n = 0;

 else if (this.d == 0) this.n = 1;

 else this.n = 2;

 return this.n;}

public float[] getX (){

 float arr[];

 if (this.d < 0) {

  arr = null;}

 else if (this.d == 0) {

  arr = new float [1];

  arr[0] = (-this.b) / (2 * this.a);}

 else {

  arr = new float [2];

  arr[0] = (float) ((-this.b + Math.sqrt(this.d)) / (2 * this.a));

  arr[1] = (float) ((-this.b - Math.sqrt(this.d)) / (2 * this.a));}

 return arr;}

   public static void main(String args []){

    Test a = new Test (1,6,2);

    a.setD();

    a.countN();

    float arr[] = a.getX();

    System.out.println(a.toString());

    if (arr == null ){ System.out.println("koreniv nema"); }

    else  

     for (float i:arr){

      System.out.println("x = "+i);

     }    }     }

№9

package rivvnannja;

public class Test

{

   float a, b, c;

   float d;

   int n;

public Test (){

 a = 1;

 b = 1;

 c = 1;}

public Test(float a, float b, float c){

 this.a = a;

 this.b = b;

 this.c = c;}

public String toString(){

 return new String("a = "+this.a+ " b = " +this.b + " c = "+this.c+" d = "+this.d);}

public void setD ( ){

 this.d = (this.b * this.b) - (4 * this.a * this.c);}

public int countN (){

 if (this.d < 0) this.n = 0;

 else if (this.d == 0) this.n = 1;

 else this.n = 2;

 return this.n;}

public float[] getX (){

 float arr[];

 if (this.d < 0) {

  arr = null;}

 else if (this.d == 0) {

  arr = new float [1];

  arr[0] = (-this.b) / (2 * this.a);}

 else {

  arr = new float [2];

  arr[0] = (float) ((-this.b + Math.sqrt(this.d)) / (2 * this.a));

  arr[1] = (float) ((-this.b - Math.sqrt(this.d)) / (2 * this.a));}

 return arr;}

   public static void main(String args []){

    Test a = new Test (1,6,2);

    a.setD();

    a.countN();

    float arr[] = a.getX();

    System.out.println(a.toString());

    if (arr == null ){ System.out.println("koreniv nema"); }

    else  

     for (float i:arr){

      System.out.println("x = "+i);

     }    }     }




1. Варианты ответов А
2.  проблеми розуміння та інтерпретації текстів розкриття смислів зробило певний вплив на розвиток методоло
3. Микробиология ~ наука о микроскопически малых существах назывх микроорганизмами
4. Я взвесил звук измерил и расчислил В загадку слова хитростью проник
5. Реферат Курсовая работа содержит 36 страниц 1 рисунок 47 использованных источника
6. Spredsheet c английского языка означает расстеленный лист бумаги
7. ВВЕДЕНИЕ Конституция СССР придает особое значение укреплению правовой основы государственной и об.html
8. Лекція. Сучасна характеристика конкурентоспроможноі продукції
9. биосфера введен австрийским геологом Э
10. Институционализм (Американский вариант)
11. а обслуживающему его банку оформленное расчетным документом перевести определенную денежную сумму на счет
12. Психология общения
13. 06 червня 2013 р м
14. . Краткая история и предмет экологии.
15. Судова система США та Франції
16. Тема 16 Фінансовокредитна система 1
17. Курсовая работа- Ефективність контролю в організації- поняття, основні параметри, система показників, проблеми
18. реферату- Стратегія і планування в системі міжнародного менеджментуРозділ- Менеджмент Стратегія і планува
19. И.О. Дата рождения число месяц год Место рождения откуда прибы
20. ОТЧЕТ ПО ПРОИЗВОДСТВЕННОЙ ПРАКТИКЕ Научный руководитель Уфа 2013 ОГЛАВЛЕ