/i/Teknoloji

    başlık yok! burası bom boş!
  1. 201.
    0
    public String topla(String i, String x){
    int sayi1 = Integer. parseInt(i);
    int sayi2 = Integer. parseInt(x);

    int toplam = sayi1 + sayi2;
    String toplamS = Integer. toString(toplam);
    return toplamS;
    }

    TextView sayi1 = (TextView) findViewById(R.id.sayi1);
    TextView sayi2 = (TextView) findViewById(R.id.sayi2);
    TextView sonuc = (TextView) findViewById(R.id.sonuc);

    String toplam = topla(sayi1.getText().toString(), sayi2.getText(). toString())

    sonuc. setText(toplam);
    ···
    1. 1.
      0
      Türkçe meali toplama işlemi yapıyo
      ···
   tümünü göster