CODE FOR WE
19 subscribers
12 photos
1 file
2 links
Code For We provide high quality articles (long reads, cases studies, coding tutorials), opportunities, learnings & best practices! Discuss ideas, tools & frameworks & many more ...!
Download Telegram
https://www.useblackbox.io/search

Use This Website to Search any Coding Questions

For Ex
1) Addition Two Number in Java
2) Find the odd number in CPP

But In the Last Of question Programming language name Is compulsory Add
👍1🔥1
Write a program to convert lower case to upper case in java ?

> public static void main(String[] args) {
String str = "Hey How Are you";
String newString = "";

for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);

if (Character.isUpperCase(ch)) {
ch = (char) (((int)ch) + 32);
} else if (Character.isLowerCase(ch)) {
ch = (char) (((int)ch) - 32);
}

newString += ch;
}

System.out.println(newString);
}
👍1
🤣2
CODE FOR WE
SQL_Short_notes.pdf
SQL Hand Written Notes