do Wile loop



public class MainActivity extends AppCompatActivity {

TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = findViewById(R.id.textView);

// do while loop
int i =1;
do{
textView.append("\n"+i +" Bangladeh");
i++;

}while (i<=10);

// while lopp
int x = 1;
while (x<=6){
textView.append("\n" +x+" Developer");
x++;
}

}

} 




Comments

Popular posts from this blog

Introduction to Array

Brek statement and continue statement