package com.codegym.task.task01.task0130; /* Our first converter! */ public class Solution { public static void main(String[] args) { System.out.println(convertCelsiusToFahrenheit(41)); } public static double convertCelsiusToFahrenheit(int celsius) { //write your code here int TC = celsius; double TF = (TC-32) * 5/9; return TF; } } This is my solution to this question. But my weakness on the solution make is i cannot figure out how the code is working and why does work.