What is your 1st program after hello word using any language | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 3

What is your 1st program after hello word using any language

jff

15th Sep 2017, 6:41 PM
aka
3 ответов
+ 5
It's been sometime ago, but my first language was C# and I was learning it from a book on WPF and XAML. So, the first code I wrote, as per tradition, was a "Hello World" block in Main(), printed to the form. The next code I wrote was some XAML, from the book demonstrating how to create and manipulate form controls using code, and then I wrote some C# to show the date and time in the control. Pretty cool stuff to play with, if you're interested in building desktop applications. Before finishing the book I broke away from it to write a WPF employee time entry application for the machine shop I was working for at the time, where employees could log the hours they worked on various jobs during their shifts and save that data to a CSV file that was emailed once per day to the shop manager. Pretty cool stuff. The places "Hello World" can lead to...awesome.
15th Sep 2017, 10:26 PM
Shane Overby
Shane Overby - avatar
+ 3
maybe c=a+b😁
15th Sep 2017, 6:48 PM
Anton
Anton - avatar
+ 1
@Ace, okay men, #include<iostream> int main(){ int a=10, b=13, c = a+b; std::cout << c; }
15th Sep 2017, 11:14 PM
Anton
Anton - avatar