- 1
Please help to solve in java
7 Antworten
+ 1
Ciro Pellegrino why we use Integer.toString(i) in this code ?
0
I have not understand your question. Reading lpang you can use
System.out.println("" + a + b + c);
or
String s = "" + a + b + c;
All numerics variable are automatically converted in string
0
I think I understand
https://code.sololearn.com/cA2A1a1a7a21/?ref=app
0
public class Program{
public static void main(String[] args){
int num=273;
for(int i=1;i<=9;i++){
System.out.println(num+"*"+i+"="+num*i);
}
}}
0
its_me_fayu .k try to change the code and ready the compiler error 😉
0
write a menu driven program to Calculate the following volume of sphere, volume if cylinder and volume of cone
0
Help here too