- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
12 Posted Topics
Re: "interger" is spelled "integer" "valve" is spelled "value" | |
Re: 1. The average person has a very short attention span when viewing a web page. Keep it simple, functional, and well organized. If you are not sure if something is simple enough, let someone who knows little more than how to google something try to find something on your site. … | |
Re: Upload the pdf to google documents. Link to it from the website using the share option. You get the scroll bar, easy download and/or print, search online for specific text, zoom in, zoom out, and 1page or 4page view. Unless you build it yourself or pay for it, I don't … | |
Re: Use the modulus operator (%) to find the numbers that give a remainder of zero for 3,5,or 7 (or being "||"). Use a loop to add them for a total sum. | |
![]() | Re: On how to write a thesis? Just interviewed a PhD about three weeks ago who sits on a council to approve people's thesis for graduation at a major university. One of the top things I remember was to emulate the structure of people who were successful and avoid the mistakes … ![]() |
Re: I believe you can get roughly the same thing by adjusting Adobe Dreamweaver's Spry options. | |
Re: I'd start with web development tools such as adobe dreamweaver or eclipse. I started with just developing a simple myspace page to my likings. Adjust background, quizzes, widgets, etc. Of course you could just try to code directly from a text editor with the bare bottom basics instead of learn … | |
Re: I compiled it, and ran it. It works fine for all three outputs. It works also without the 'getchar();' at the end. Compiler issue? | |
Re: I prefer 'for loops' for counting myself. Say you want to count/loop something. For a while loop: [CODE] while (count<= 5) { printf("%i\n", count); ++count } [/CODE] By declaring the number to count inside the loop, it counts each time the loop processes. | |
Re: Your assignments did not match up. [CODE] #include <stdio.h> #include <math.h> int main(void) { double Force; double mass; double a=9.81; printf("Enter the mass value: "); scanf("%lf", &mass); Force= mass*a; printf("The Force of the body is : %5.2f\n", Force); return 0; } [/CODE] | |
Re: Can you open page from the webpage file directly into IE? (How Dreamweaver connects to IE for previewing; doubt it but maybe) Can you preview it in another browser such as firefox? (Individual browser problem) |
The End.