News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Welcome Newcomers - PLEASE READ!!!

Started by MortenMacFly, February 06, 2011, 10:24:57 AM

Previous topic - Next topic

Jose Martins

I'm here, I'm new in code:blocks

I come for the (good old) fortran team... :D

ahsten84


Melchior

better late then never!
I know some C from college (2001-2002), and a bit of C++
I have my own Console program, temperature converter program which originally began as a class assignment in either CS 140 or CS185,
I can't recall if a temperature converter was the assignment and I merely choose the way to write it myself ( I use switches),
or i choose to do a temperature converter....

since then I have worked on a number of times, and as of December 2012 or so... I completed it
i.e. it converts Fahrenheit, Celsius, and Kelvin back and forth


cout << "Please select how You would like to convert.\n"            /* Prompts user to make a selection */
<< "Enter the # 1, to convert Fahrenheit to Celsius.\n"    /* Prompts user with an option. */
<< "Enter the # 2, to convert Celsius    to Fahrenheit.\n" /* Prompts user with an option. */
<< "Enter the # 3, to convert Fahrenheit to Kelvin.\n"     /* Prompts user with an option. */
<< "Enter the # 4, to convert Celsius    to Kelvin.\n"     /* Prompts user with an option. */
<< "Enter the # 5, to convert Kelvin     to Fahrenheit.\n" /* Prompts user with an option. */
<< "Enter the # 6, to convert Kelvin     to Celsius.\n"    /* Prompts user with an option. */
<< "Enter the # 9, to end the program right now.\n"        /* Prompts user with an option. */
<< endl;             /* Prints new line, and clears cout buffer. */


after completing it I converted it to C++ which really wasn't that hard.. ^_^
and added validation checks to prevent crashing or INFINITE loops

do
{
cout << "Please enter your selection now."   /* Prompts for the user's selection.        */
<< endl;                            /* Prints new line, and clears cout buffer. */
cin.clear();                                 /* Clears input buffer, to avoid garbage.   */
cin  >> check;                               /* Gets user's input from the keyboard.     */
cin.ignore();                                /* Ignores return key stroke.               */
cout << endl;                                /* Prints new line, and clears cout buffer. */

if(cin == NULL)   /* Validation of Input buffer, IS NOT NULL. */
{
cout << "\nERROR:\n"
<< "DO NOT ENTER ANY THING OTHER THEN A NUMBER FROM 1 to 6 or 9,\n"
<< "OR THE PROGRAM COULD GO NUTZ...\n"
<< endl;

cin.clear();  /* Clears input buffer to avoid NULL loops. */
cin.ignore(); /* Ignores return key stroke.               */
}

}while( (check<1) || (check>6) && !(check==9) ); /* Input selection Validation of check.          */

if(check == 9) end();                            /* If the User's input is 0, calls end function. */


I am here mainly to bug report when/if i run into anything...
(PC Specs)
CPU: AMD FX-9590 4.7GHz 8-core  RAM: 32GB
Motherboard: Asus SABERTOOTH 990FX R2.0
GPU: nVidia GTX 1070 Ti 8GB  --  GFX Drivers: Nvidia v431.60
OS: Windows 7 Ultimate 64-bit SP1 (x64)

CutNGlass

Hi,

I am new, I am Here, I  am a "REAL Person".

Would like to mention that you may want to update the "correct answer" for the registration question regarding the next year to be 2016, rather than 2015.  Even though I am still writing 2014  :o

Thank you very much for Code::Blocks.


Attanasso

I am New, I am Here, I  am a "REAL Person" , ask my Dog , He'll vouch for Me !! I , too , had to Go Back In Time to Register ... Even though it is 2015 in this quadrant of the MWG , I had to shift into an alternate universe to write the incorrect year in order to register ... already I'm lying just to be accepted by a bunch of people I don't even know !?!?!? Boy , the more I think about it the more apprehensive I become about all this ... What kind of group have I become a part of ? Help Me ...... my brains won't compile .... " Daisy , Daisy , give Me your answer do , I'm half crazzzzy ...... ( phhffft ...... ) {} ...

digifuzzy


Raiyan Jamil10


Viperwow


brighteningeyes

i'm here, i'm another programmer and i like programming

johabymorales

Hi, I'm new to the website. I have a question. I have been trying to do homework on a programming class at USF,and codeblock does not want to run the program. I get an environment error saying it could not find a compiler executor for my search path. Any ideas?

carl_bab

I am new and interested in learning C,C++

wills rims

Hi, I am new and here. Learning C++ and looks like am going to like C::B
Thanks

CAT

I am new, but here I am. Thank you.  :)

Davout

Hello

I am human though some may contest that claim.

Old timer here, who started hobby coding on 6502, 6809, 68000 and a bit of the Z80, many, many moons ago.

As I 'matured' (became bogged down with work and children) the time for hobbies diminished and keeping up with the latest tech became lost. Now with the children grown up I have more free time.

Now I need to learn a programming language for a 'new' longer term hobby project and C/C++ will be the core language (I think) so hopefully I can learn 'quickly'.

I know, I know optimism beyond reason but.......................

gorman49

From one Human To another, I am Here and I hope to learn a lot. Hello to all.