- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Grime-Football-Running-Programming Guy.
12 Posted Topics
Re: Excellent summary of the major programming languages. Has helped me a lot get an insight into the 3 languages Im doing next year; Java, C++ and VB.Net! Cheers mate. Computer Science algorithm amazon-web-services asp asp.net client-server database-design delphi developer-tools first-post google gui html-css ide java-jsp java-netbeans javascript legacy-mac mac-software machine-learning microsoft microsoft-access microsoft-windows oop operating-system pascal perl python software-architecture unix user-interface vb.net vbscript visual-basic visual-studio web-browser web-design web-server windows-server xml | |
Im starting a course next year which will cover a C++; I was wondering whats the best software to start coding in C++? I noticed my college use NetBeans which is an IDE which may be a start? Any help appreciated. | |
Re: [quote=iamthwee;376787]Programming is not about who can display the most colours in the console window. When you realise this then you might actually write something useful.[/quote] Harsh but true. | |
Re: [quote=addicted;344350].. although i always get my program to work properly but i still feel bad about the process of completing the program... :([/quote] I feel your pain bro BUT with time and practise I find my coding gets quicker and more refined. The more tasks I complete the more pitfalls … | |
![]() | Re: I had this same problem recently and discovered that in pascal there is a 'Val' function (with 3 parameters, 1st for the string, second for integer and third for error message if the 1st parameter is true) for converting a number into a string....your program would work like this... [code] … |
Re: [quote=MidiMagic;358002]It's the ads. As soon as they load, it goes fast again. While they are loading, you can't even scroll now.[/quote] Yes Ive found this to be the case also. Site speeds seems to be up and down of recent tho. | |
Just trying to make my program user friendly...but I get the response 'Wrong' when I enter in a number or abcd when really I want my error message displayed when the user enters input like that and ONLY a Correct or Wrong response when the user enters 'A' 'B' 'C' … | |
This looks a great site. Perfect for the likes of me, Im a recent student from Scotland to Software Development but hope to progress through the different languages. At the moment I'm finishing off my course on Pascal, the dead language but apparently itll help for some aspects of C. … ![]() | |
I dont know if Im far off with this, The user enters their name and I want them to only enter in a string so if they enter in a number Id like an error message, any ideas? [code]program Word; uses crt; var letter: string; begin clrscr; Repeat writeln('What is … | |
Im failing to see what Ive done wrong, the syntax is right but the program wont run for me when I enter in a the else statement works tho.... [code]program Word (input, output); uses crt; var number : integer; letter: string; begin {------------Introduction & Setup------------------} clrscr; {------VERY User-Friendly------} Repeat writeln('Whats … | |
I was doing some coding today and came across a problem someone else faced and I couldnt answer it for them. I'll explain the concept in the little program below.... [code] Program between; uses crt; Var value: integer; Begin clrscr; writeln('Please enter value'); readln(value); readln End.[/code] ...Basically what the programmer … | |
So far as you can see below Ive got the program accessing the file and just reading the lines; Ive got the file set up like so... What is the Answers? A Do this B Do that C Dont do that D Definitely this A So this method is set … |