0
is there any way ta contact someone in my followers or make private messages?
7 Réponses
+ 9
no..not yet introduced
+ 4
Well, many Sololearners are requesting a chat feature. Maybe Sololearn will introduce it soon.
+ 2
Not yet
+ 2
if it there,it would be even better sololearn, but any way waiting a new variation with that features. thanks.
+ 2
ya abdayn tell me the output of this code
+ 2
class MyClass {
public static void main(String[ ] args) {
int result=0;
for(i=3;i<5;i++){
if (i==3){
result+=10;
}
else{
result+=i;
}
}
System.out.println(result);
}
- 1
class MyClass {
public static void main(String[ ] args) {
int result=0;
for(int i=3;i<5;i++){
if (i==3){
result+=10;
}
else{
result+=i;
}
}
System.out.println(result);
}
}
=14