+ 4
Guys please help me to make this program in javaš š
5*1=5 5*2=10 5*4=20 5*5=25 5*6=30 5*8=40 5*9=45 5*10=50
6 Answers
+ 4
for(int i=1;i<=10;i++){
if(i==3||i==7){
continue;
}
System.out.println("5 * "+i+" = "+5*i);
}
//Write Code Skeleton Yourself.
https://code.sololearn.com/cjQ094758h9z/?ref=app
And if you ask me why I named the code as I did, just know it, for me, everything is a challenge.
+ 10
SarvarCoder are u pulling our legs?
+ 5
@ankit, sure it is.
+ 1
is this java code running ?
0
yes it works