-
201.
0public 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.
0Türkçe meali toplama işlemi yapıyo
-
1.
başlık yok! burası bom boş!