1.03K subscribers
1.77K photos
420 videos
672 files
3.83K links
Download Telegram
Pro Android with Kotlin.pdf
5.4 MB
πŸ‘2⚑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
πŸ‘4πŸ”₯2⚑1
Media is too big
VIEW IN TELEGRAM
Java - case operatoriga oid misollar

Telegram | ViktorinBot | Portfolio | YouTube
πŸ‘4πŸ”₯1
Media is too big
VIEW IN TELEGRAM
Java - Armstrong sonni topuvchi dastur

#java
#armstrong

Telegram | ViktorinBot | Portfolio | YouTube
πŸ‘4πŸ”₯2⚑1
Media is too big
VIEW IN TELEGRAM
Java - matrisani matrisaga ko'paytirish

#java
#matrix

Telegram | ViktorinBot | Portfolio | YouTube
πŸ‘4⚑2πŸ”₯1
Media is too big
VIEW IN TELEGRAM
Java - faylga yozishga oid misollar

#java
#file

Telegram | ViktorinBot | Portfolio | YouTube
πŸ‘3πŸ”₯2⚑1
Media is too big
VIEW IN TELEGRAM
πŸ‘3πŸ”₯2⚑1
Yuqorida Java dasturlash tilidan sotiladigan video darsliklar bo'yicha na'munalar tashlandi.

murojaat uchun: @AbdullayevZohid2609
πŸ‘4⚑1πŸ”₯1
Java kursi haqida.txt
1.8 KB
Java dasturlash tilida tayyorlangan videodarsliklar ro'yxati

Telegram | ViktorinBot | Portfolio | YouTube
πŸ‘4⚑1πŸ”₯1
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3πŸ”₯2⚑1
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3πŸ”₯2⚑1
πŸ” πŸ…°οΈπŸ” πŸ” πŸ” 
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πŸ”₯2⚑1
πŸ”€πŸ”€πŸ”€πŸ”€πŸ”€ βœ…
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