Homework 1: Fun with numbers

--Originally published at Let's CODE

Our first assigment was to make a program that asked the user for two numbers and then showed the sum, difference, product, integer quotient and remainder of that numbers. The code I made is very simple, I just included an additional library (<math.h>) to use the fabs function whe dividing the numbers, because the instructions … Continue reading Homework 1: Fun with numbers

Hello World!!!

--Originally published at Let&#039;s CODE

This is the first program I make with C++. It is very simple, and it’s like the “Ritual of Iniciation” in the programming world. You only have to understand simple concepts to make it happen. For example, to print or read informatio during the execution of the program, you need to write the line #include … Continue reading Hello World!!!