My summer schedule

Started by
10 comments, last by max621 20 years, 11 months ago
Well I just registered for Biology 101 and Computer Science 141 (Computer Programming 1). Here''s a quick description of the course:
quote:Introduction to development environment, introduction to computer architecture, and elements of a language such as control structures, functions, basic I/O, one-dimensional and parallel arrays, text file I/O. Algorithm development, problem solving, and software engineering are emphasized.
Basically its a C++ class and I''ve never taken a programming class before. This is basically to help me understand what on earth the software engineers are talking about when I have my job as a technical writer. I''ll be coming here a lot if I hit a roadblock, and since I''ve never programmed before, I''m thinking there might be quite a few.
Vlad Tepes
Advertisement
an asshole like me knows that stuff so dont worry, you''ll be fine. IT seems like an all intro class. So you should be fine
string a=("I want to make a hot car racing game for my girlfriend");
parallel arrays? never heard that one before.


[My site|SGI STL|Bjarne FAQ|C++ FAQ Lite|MSDN|Jargon]
Ripped off from various people
[size=2]
Probably something to make the class seem more advanced, by using obscure definitions of concepts or something I''d guess that it might be mutlidimensional arrays?
Peon
quote:Original post by wild_pointer
parallel arrays? never heard that one before.


Parallel arrays are where you have multiple arrays where elements of one correspond to elements of the other. Eg.

float[] xCoords;
float[] yCoords;

and so xCoords and yCoords together define a single point.<br><br> <br><br><SPAN CLASS=editedby>[edited by - OrangyTang &#111;n June 4, 2003 4:35:21 AM]</SPAN>
quote:Original post by Peon
Probably something to make the class seem more advanced, by using obscure definitions of concepts or something I''d guess that it might be mutlidimensional arrays?


Nope, as the previous two post indicate; its actually a pretty common concept that you''ve somehow missed out on....



quote:Original post by wild_pointer
parallel arrays? never heard that one before.

<hr>
<font size="-2">[<a href="http://www.zooksonline.com">My site</a>|<a href="http://www.sgi.com/tech/stl/">SGI STL</a>|<a href="http://www.research.att.com/~bs/bs_faq2.html">Bjarne FAQ</a>|<a href="http://www.parashift.com/c++-faq-lite/">C++ FAQ Lite</a>|<a href="http://msdn.microsoft.com">MSDN</a>|<a href="http://info.astrian.net/jargon/">Jargon</a>]<br></font><font color="green" size="-2">Ripped off from various people</font>


You''ve probably used them and just didn''t know it.
quote:Original post by Anonymous Poster

You've probably used them and just didn't know it.


No, I haven't. Why would I make two seperate arrays to represent related data?


[My site|SGI STL|Bjarne FAQ|C++ FAQ Lite|MSDN|Jargon]
Ripped off from various people

[edited by - wild_pointer on June 5, 2003 4:36:10 PM]
[size=2]

why not? not everything need be put in a structure...
Why should it be put in a structure? Put it in a 2d array!

Seriously, what''s the advantage of parallel arrays over multidimensional ones?
-------------"On two occasions, I have been asked [by members of Parliament], 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question."- Charles Babbage (1791-1871)

This topic is closed to new replies.

Advertisement