1. Home
  2. /
  3. Eiffel
  4. /
  5. Temperature Converter

Temperature Converter - Eiffel Typing CST Test

Loading…

Temperature Converter — Eiffel Code

Converts Celsius to Fahrenheit.

class
	TEMP_CONVERTER
feature
	c_to_f (c: REAL)
		local f: REAL
		do
		f := (c * 9.0 / 5.0) + 32.0
		io.put_real(f); io.put_new_line
		end
end

! Run
local
	t: TEMP_CONVERTER
do
	create t
	t.c_to_f(25.0)
end

Eiffel Language Guide

Eiffel is a high-level, object-oriented programming language designed for software engineering with a strong emphasis on correctness, reusability, and maintainability. It supports the Design by Contract methodology, promoting robust and reliable applications.

Primary Use Cases

  • ▸High-reliability enterprise software
  • ▸Safety-critical systems
  • ▸Reusable component libraries
  • ▸Formal software engineering projects
  • ▸Educational use for software engineering principles

Notable Features

  • ▸Design by Contract
  • ▸Strong static typing
  • ▸Generic classes and collections
  • ▸Multiple inheritance with controlled resolution
  • ▸Automatic memory management (garbage collection)

Origin & Creator

Eiffel was created by Bertrand Meyer in the late 1980s at ETH Zurich and later developed further at Interactive Software Engineering.

Industrial Note

Eiffel is used in safety-critical systems, mission-critical enterprise applications, embedded systems requiring high reliability, and software frameworks emphasizing correctness.

More Eiffel Typing Exercises

Eiffel Counter and Theme ToggleEiffel Fibonacci SequenceEiffel Factorial CalculatorEiffel Prime CheckerEiffel Sum of ArrayEiffel Reverse StringEiffel Multiplication TableEiffel Simple Alarm SimulationEiffel Random Walk Simulation

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher