1.04K subscribers
1.77K photos
420 videos
671 files
3.83K links
Download Telegram
Media is too big
VIEW IN TELEGRAM
Java - matrisani matrisaga ko'paytirish

#java
#matrix

Telegram | ViktorinBot | Portfolio | YouTube
👍42🔥1
Media is too big
VIEW IN TELEGRAM
Java - faylga yozishga oid misollar

#java
#file

Telegram | ViktorinBot | Portfolio | YouTube
👍3🔥21
Media is too big
VIEW IN TELEGRAM
👍3🔥21
Yuqorida Java dasturlash tilidan sotiladigan video darsliklar bo'yicha na'munalar tashlandi.

murojaat uchun: @AbdullayevZohid2609
👍41🔥1
Java kursi haqida.txt
1.8 KB
Java dasturlash tilida tayyorlangan videodarsliklar ro'yxati

Telegram | ViktorinBot | Portfolio | YouTube
👍41🔥1
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥21
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥21
🔠🅰️🔠🔠🔠
Given a string and a non-negative int n, return a larger string that is n copies of the original string.


stringTimes("Hi", 2) → "HiHi"
stringTimes("Hi", 3) → "HiHiHi"
stringTimes("Hi", 1) → "Hi"

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥21
🔤🔤🔤🔤🔤
public String stringTimes(String str, int n) {
String s = "";
for (int i=0; i<n; i++){
s = s + str;
}
return s;
}

📱 Telegram
ViktorinBot 📱
📱 Portfolio
YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
3👍2🔥1
🔠🔠🔠🔠🔠
Given a string and a non-negative int n, we'll say that the front of the string is the first 3 chars, or whatever is there if the string is less than length 3. Return n copies of the front;


frontTimes("Chocolate", 2) → "ChoCho"
frontTimes("Chocolate", 3) → "ChoChoCho"
frontTimes("Abc", 3) → "AbcAbcAbc"

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
3👍2🔥2
🔤🅰️🔤🔤🔤
public String frontTimes(String str, int n) {
String s = "";
if (str.length() > 2){
for (int i = 0; i< n; i++){
s += str.substring(0, 3);
}
}
if (str.length() > 1 && str.length() <= 2){
for (int i = 0; i< n; i++){
s += str.substring(0, 2);
}
}
if (str.length() > 0 && str.length() <= 1){
for (int i = 0; i< n; i++){
s += str.substring(0, 1);
}
}
return s;
}

📱 Telegram
ViktorinBot 📱
📱 Portfolio
YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥31
🔠🅰️🔠🔠🔠
Given a string, return a new string made of every other char starting with the first, so "Hello" yields "Hlo".


stringBits("Hello") → "Hlo"
stringBits("Hi") → "H"
stringBits("Heeololeo") → "Hello"

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥3👍21
😇🥰🥰🥰😇
public String stringBits(String str) {
String s = "";
for(int i=0; i<str.length(); i+=2){
char c = str.charAt(i);
s += c;
}
return s;
}

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
4👍1🔥1
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
IntelliJ IDEA dasturini o'rnatish

Java va Kotlin dasturlash tillari uchun muhit

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🔥21
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
Kotlin - Klaviaturadan o'zgaruvchilarni kiritish

#kotlin
#kiritish

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3❤‍🔥2🔥1
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
Kotlin - while operatoriga oid masalalar

#kotlin
#while

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
2👍2❤‍🔥1🔥1
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
Kotlin - ikki o'lchovli massivning diagonallari haqida

#kotlin
#massiv
#diagonal

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍41❤‍🔥1
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
Kotlin - OOP class and object

#kotlin
#oop
#class
#object

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
👍32🔥1
Media is too big
VIEW IN TELEGRAM
🔠🔠🔠🔠🔠🔠
Kotlin - OOP yordamida Registratsiya dasturini yaratish

#kotlin
#oop
#registration
#cleanCode

📱Telegram | ViktorinBot | Portfolio | YouTube ▶️
Please open Telegram to view this post
VIEW IN TELEGRAM
2👍2❤‍🔥1🔥1