An athelete takes a 3 round of a triangle park with sides as 13m,25m and 35m. Write a program to determine the total distance covered by him
its a java question not maths question
Answers
Answered by
0
Answer
Class distance
{
public static void main (String args[])
{
int a = 13;
int b = 25;
int c = 35;
System.out.println(" The distance covered is "+ (a + b + c));
}
}
Explanation:
Answered by
0
Answer:
import java.util.*;
public class Main
{
public static void main(String[] args) {
int a=13, b=25, c=35;
System.out.println("Total distance covered = "+3*(13+25+35));
}
}
Explanation:
mark as brainliest : )
Similar questions