Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. void main() {
  2. print('program hello world');//1
  3. int a;
  4. if(a > 0) {
  5. print ('nilai a: $a');//2
  6. }
  7.  
  8. int i = 0;
  9. while(i < a){
  10. print('Baris $i');//4
  11. i++;//5
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement