"Throwing it back to a drawing I created in grade 12, 2 years ago. This piece reflects my love for art and creativity. Excited to share my work with you all! #artwork #drawing #artist"
#Freshman Tips
#Freshman Tips
link:
@examanswer1
👍8👏3❤1🔥1
👍1
People really need to understand billionaires and millionaires difference.
If I give you 100k$ every day you need 10 days to be a millionaire.
If I give you 100k$ every day you need at least 27 years to be a billionaire.
Let that sink in.
FYI: with the above rate to reach Elun musk you need >540 years to reach his worth 😂
If I give you 100k$ every day you need 10 days to be a millionaire.
If I give you 100k$ every day you need at least 27 years to be a billionaire.
Let that sink in.
FYI: with the above rate to reach Elun musk you need >540 years to reach his worth 😂
2.write Java program that display multiplication number table
First of all in java file name and main class name must have to be the same
//your file name should be Multiplication
//file.name Multiplication.java
public class Multiplication {
public static void main(String[] args) {
for(int i=0;i<=12;i++){
for(int j=0;j<=12;j++)
if(i==0 || j==0){
if(i==0 && j==0){
System.out.print("* ");
}
else{
System.out.print(i+j+" ");
}
}
else if(i!=0 && j!=0){
System.out.print(i*j+" ");
}
System.out.println();
}
}
}
System.out.print("Prepared by Freshman tips");
for more join our official channel
link:@examanswer1
First of all in java file name and main class name must have to be the same
//your file name should be Multiplication
//file.name Multiplication.java
public class Multiplication {
public static void main(String[] args) {
for(int i=0;i<=12;i++){
for(int j=0;j<=12;j++)
if(i==0 || j==0){
if(i==0 && j==0){
System.out.print("* ");
}
else{
System.out.print(i+j+" ");
}
}
else if(i!=0 && j!=0){
System.out.print(i*j+" ");
}
System.out.println();
}
}
}
System.out.print("Prepared by Freshman tips");
for more join our official channel
link:@examanswer1
👍3