Answer:
String cocat =octet1+"."+octet2+"."+octet3+"."+octet4;
Step-by-step explanation:
See a complete java code below:
public class num15 {
public static void main(String[] args) {
int octet1 = 192;
int octet2 = 168;
int octet3 = 1;
int octet4 = 44;
String cocat =octet1+"."+octet2+"."+octet3+"."+octet4;
System.out.println(cocat);
}
}