Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~4K People Reached
About Me

Grime-Football-Running-Programming Guy.

Favorite Tags
Member Avatar for Iron_Cross

I often see people asking the same question over and over, "How do I learn to program, and where do I start?" Some people may take that question to the next level by asking, "Which language should I learn first?". The answer to those questions is fairly simple, but also …

Member Avatar for Ancient Dragon
11
1K
Member Avatar for adotl

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.

Member Avatar for jbennet
0
134
Member Avatar for badrobot

[code=cpp]#include <iostream.h> #include <stdlib.h> #include <conio.h> #include <graphics.h> #include <iomanip.h> int i,emonth,eyr,wday,nwday,pmdays,x,y; unsigned int totaldays; int monthd[]={31,28,31,30,31,30,31,31,30,31,30,31}; char* mname[]={"January","Febraury","March","April","May","June","July","August","september","October","November","December"}; int gm,gd=DETECT,mx,my; char*cp,*yrp; int xp,yp,textw,texth,skey; void display_month(); void monthgraphics(); void monthloop(); void process_date(); void yeargraph(); void yearloop(); /*main starts*/ void main() { char choice='v'; initgraph(&gd,&gm,""); while(choice!='e') { cleardevice(); setcolor(1); rectangle(1,100,639,350); rectangle(4,102,637,348); …

Member Avatar for adotl
0
184
Member Avatar for addicted

I need you to help with this.... I always get confused when a program that appears simple takes me long time to finish, and i always think that i am not up to the task... i always think that a good programmer is not suppose to take that much time …

Member Avatar for adotl
0
107
Member Avatar for Lioshenka

I am writing a program (well, actually I have finished it) using pascal, the program is to read in 3 sides of the triangle and produce a message whether it is right-angled, iscosceles, obtuse etc. Now just to finish it off and make it user friendly i need some sort …

Member Avatar for adotl
0
270
Member Avatar for Sturm

daniweb seems sooo slow lately. Whats up? It uses 1/2 of my first cpu and its clocked at a reasonably 2 ghz.

Member Avatar for jbennet
0
131
Member Avatar for adotl

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' …

Member Avatar for LennyC
0
150
Member Avatar for adotl

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. …

Member Avatar for iamthwee
1
46
Member Avatar for adotl

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 …

Member Avatar for adotl
0
107
Member Avatar for adotl

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 …

Member Avatar for adotl
0
186
Member Avatar for adotl

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 …

Member Avatar for adotl
0
113
Member Avatar for adotl

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 …

Member Avatar for adotl
0
836