KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Жазылу
D-GARS
ill mind, mentally fit.
8:51
Scratch Tape - D-GARS PARA SA KATAWHAN
21 күн бұрын
9:51
Scratch Tape - @WAIIAN HINDI MARUNONG MAG TABANOG
28 күн бұрын
9:19
Scratch Tape - Jackpot
Ай бұрын
9:05
Scratch Tape - 3rd Party
Ай бұрын
13:25
Scratch Tape - GE BREAKAN ANG ILIGAN
Ай бұрын
5:49
Scratch Tape - Kreyzii Night with Beatmaster
Ай бұрын
9:16
Scratch Tape - D-GARS at BINI Gwen may SOMETHING???
Ай бұрын
12:29
Scratch Tape - where my heart is
Ай бұрын
14:30
Scratch Tape - UBEQIZTAN
Ай бұрын
9:11
Scratch Tape - Higabibo Festival
2 ай бұрын
8:35
Scratch Tape - MOUNTAIN GIG
3 ай бұрын
3:50
D-GARS - TABANG MO TANAN (Official Music Video) (Prod. by Makii Beats) (feat. XCN)
4 ай бұрын
9:44
Scratch Tape - D-GARS GE TABANGAN
4 ай бұрын
7:45
Scratch Tape - aan jasaan
4 ай бұрын
6:28
Scratch Tape - Roll Model
5 ай бұрын
5:29
Scratch Tape - HBD OVC
5 ай бұрын
3:13
D-GARS - YAWA SAVIOR feat. Badoo Go (Official Music Video)
5 ай бұрын
2:36
D-GARS - INTERGALACTIC
6 ай бұрын
3:23
D-GARS - MOUNTAIN GOAT
6 ай бұрын
3:20
D-GARS - TABANG MO TANAN (feat. XCN)
6 ай бұрын
3:11
D-GARS - YAWA SAVIOR (feat. Badoo Go)
6 ай бұрын
3:17
D-GARS - WISEGUY (feat. JKLRD)
6 ай бұрын
2:44
D-GARS - SPLASH GAWENS (feat. $ako)
6 ай бұрын
2:18
D-GARS - SALAMANCA
6 ай бұрын
3:14
D-GARS - HIMO TAG BABY (feat. Soisoi & MARYANG)
6 ай бұрын
2:36
D-GARS - CHUPA SA DIWATA (feat. Makii Beats)
6 ай бұрын
2:48
D-GARS - FLYTOWNICATION (feat. Makii Beats)
6 ай бұрын
6:10
Scratch Tape - MGA WA PAY DISI-OTSO ANG EDAD
6 ай бұрын
11:48
Scratch Tape - MAS BAGSIK PAMANS D-GARS
8 ай бұрын
Пікірлер
@GwenSana-x7o
Сағат бұрын
🤯🔥
@neurushevreyday
Күн бұрын
dgars 🥷💲✨
@NenaCorpin
2 күн бұрын
😅😅😅
@litchbach3724
4 күн бұрын
👌
@klentcasinillo
5 күн бұрын
Gars pa shout out!!!
@sythanielnast9421
10 күн бұрын
damn ill is d wt this thang!
@vjleemarposadas2774
10 күн бұрын
doll wala lagi ni sa ig nga kanta? sayangg
@Ka_shien_koji
13 күн бұрын
Early mga idol solid🔥☺️❤️
@kurtfrancistabora2
14 күн бұрын
solido!
@iamwillyyy
16 күн бұрын
😮💨
@JohnNaallatan
16 күн бұрын
import java.util.Scanner; public class Problem2 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter the number of students: "); int numberOfStudents = scanner.nextInt(); String[] studentNames = new String[numberOfStudents]; int[] totalScores = new int[numberOfStudents]; String[] result = new String[numberOfStudents]; for (int i = 0; i < numberOfStudents; i++) { scanner.nextLine(); System.out.print("Enter the name of student " + (i + 1) + ": "); studentNames[i] = scanner.nextLine(); System.out.print("Enter " + studentNames[i] + "'s Math score: "); int mathScore = scanner.nextInt(); System.out.print("Enter " + studentNames[i] + "'s Science score: "); int scienceScore = scanner.nextInt(); System.out.print("Enter " + studentNames[i] + "'s English score: "); int englishScore = scanner.nextInt(); totalScores[i] = mathScore + scienceScore + englishScore; if (totalScores[i] >= 180) { result[i] = "Pass"; } else { result[i] = "Fail"; } } System.out.println(" Student Performance:"); for (int i = 0; i < numberOfStudents; i++) { System.out.println(studentNames[i] + ": Total Score = " + totalScores[i] + " (" + result[i] + ")"); } scanner.close(); } }
@JohnNaallatan
16 күн бұрын
import java.util.Scanner; public class Problem2 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter the number of students: "); int numberOfStudents = scanner.nextInt(); String[] studentNames = new String[numberOfStudents]; int[] totalScores = new int[numberOfStudents]; String[] result = new String[numberOfStudents]; for (int i = 0; i < numberOfStudents; i++) { scanner.nextLine(); System.out.print("Enter the name of student " + (i + 1) + ": "); studentNames[i] = scanner.nextLine(); System.out.print("Enter " + studentNames[i] + "'s Math score: "); int mathScore = scanner.nextInt(); System.out.print("Enter " + studentNames[i] + "'s Science score: "); int scienceScore = scanner.nextInt(); System.out.print("Enter " + studentNames[i] + "'s English score: "); int englishScore = scanner.nextInt(); totalScores[i] = mathScore + scienceScore + englishScore; if (totalScores[i] >= 180) { result[i] = "Pass"; } else { result[i] = "Fail"; } } System.out.println(" Student Performance:"); for (int i = 0; i < numberOfStudents; i++) { System.out.println(studentNames[i] + ": Total Score = " + totalScores[i] + " (" + result[i] + ")"); } scanner.close(); } }
@CoraHabagat
17 күн бұрын
Hi
@justinjae887
17 күн бұрын
❤️🔥❤️🔥❤️🔥
@HILLARY_999
20 күн бұрын
Himo lagi daw
@yojyagpacama
20 күн бұрын
Dol abang ko saimong concert 🔥🔥🔥💯💯💯
@jakeparungao9768
22 күн бұрын
🎉🎉🎉
@clarkpagoboclark4139
22 күн бұрын
Yes i🔥
@reykithwarrengarcines8707
22 күн бұрын
First🤙🔥
@kethmarkquizona2585
23 күн бұрын
Hi
@RegenGangang
24 күн бұрын
Featuring Laguindingan ❤️🥰 nice 1 idol ❤️
@chattymarieaguinid8836
26 күн бұрын
lyrics pleaseeee
@kuyaksvlog5110
27 күн бұрын
Atay
@kentcagas3430
27 күн бұрын
Ang ate dya?
@kentcagas3430
28 күн бұрын
Lahi mana ang gi tabanog gars item man
@nigamay
28 күн бұрын
D-GARS X WAIIAN!!!!!!!!
@Scorpio_88
28 күн бұрын
unsa title ani!!!
@dreau_baddaflex
29 күн бұрын
Unsay ni na kanta brother? 11:24
@dynamicopace16
29 күн бұрын
idol justraw oh
@neurushevreyday
29 күн бұрын
aye!!!
@kingarthurbacang8593
Ай бұрын
🐐
@KRHProductions
Ай бұрын
kapaa oy!!
@danielanguay4474
Ай бұрын
🥶🥶
@JiekaiEroja
Ай бұрын
Idola aning Badoo
@neurushevreyday
Ай бұрын
🐝
@jaylovideos453
Ай бұрын
Daug unta hahaha
@martinchristopherfelizardo1738
Ай бұрын
Wala man ka ng ingon gar. Naa diay ka kron sa earth 137. 😂
@YBJAH069
Ай бұрын
🪲🐐
@christiancainta1258
Ай бұрын
ibigay mo na lang sa iba gars haha
@kurinaiuchiha
Ай бұрын
Mao ni tinuod nga solid bisaya rapper. Di ng uban nga nag apil apil ra pero way klarong lyrics.
@BettyHernandez-j2o
Ай бұрын
Jackson Steven Jackson Jose Robinson George
@jaylovideos453
Ай бұрын
Boss beat master dbest
@JunreyCagalawan
Ай бұрын
Amawa sa ending uy bwahahahahhaha
@FlyTownMakiiBeats
Ай бұрын
Hahaha 😂
@collinmaecalderon4965
Ай бұрын
❤ ❤❤
@jaspersarande7855
Ай бұрын
🔥💪
@axlbeorn4286
Ай бұрын
Sounds like cordae lagi ni..hmm
@guider840
Ай бұрын
💣💥🔥
@talenteddresser2449
Ай бұрын
sauna pa music kog DGARS tripan ko kay lahi kuno, karon mura nag iro tong nag kanchaw sigeg sunod sunod na nuon nimo GAR hahahahahahahhaaha
@YBJAH069
Ай бұрын
Bakukang og alien nag uban👹🥷