package bn.codegym.task.taytksk01.task0106;
/*
ত্রুটি ও বৈশিষ্ট্য
*/
public class Solution {
public static void main(String[] args) {
//write your code her
System.out.println("It's not a bug "+"- it's a feature.");
}
}
How to solve?
আলোচনাধীন
মন্তব্য (4)
- জনপ্রিয়
- নতুন
- পুরানো
Shahzain Ahmed
2 নভেম্বর 2019, 06:40
Write this:
System.out.println("It's not a bug - it's a feature.");
So output will be:
It's not a bug - it's a feature.
0
Mohammad Ali
2 নভেম্বর 2019, 03:08
try again bro.it will be ok.
0
Sajid Al Amin Tanmoy
29 অক্টোবর 2019, 10:48
public class Solution {
public static void main(String[] args) {
//write your code her
String a="It's not a bug - it's a feature.";
System.out.println(a);
}
}
0
Guadalupe Gagnon
28 অক্টোবর 2019, 13:38
Probably typed somewhere, or removed something, you weren't supposed to. Try resetting the task and only typing where it says to.
0