Thread: I hate being computer literate

  1. #31
    Its not rocket science vasanth's Avatar
    Join Date
    Jan 2002
    Posts
    1,683
    well contributing to society i would say teaching.. since these kids may develop 100 new technology in the future where as you will develop only what one man can do ..

  2. #32
    PC Fixer-Upper Waldo2k2's Avatar
    Join Date
    May 2002
    Posts
    2,001
    flowcharting and other visual documentation methods are something I wish they taught MORE actually.
    true, but, it should be taught differently, not ,how was mentioned earlier, on five line programs. That's just repetitive and useless, soon the kids won't want to ahve anything to do with it, what should be done is this: give the students this program:
    Code:
    #include <iostream>
    using namespace std;
    char SomeVariable[20];
    
    int main()
    {
    std::cout<<"Enter some text"<<endl;
    std::cin>>SomeVariable;
    std::cout<<"Enter more text"<<endl;
    std::cin>>SomeVariable;
    return 0;
    }
    when they compile there won't be any errors, but, when they run it they'll be prompted to enter the variable once, but the secnod time, the enter more text will flash and the program will exit. That's because of the hanging '\n' sitting in the input buffer, this is where the flow chart comes in handy, that's how you teach somebody how the code really works, that it's not perfect even if it compiles. Then they'll see the real need for the flowchart and really grasp the concepts.
    I'm actually being hypocritical here, considering i never actually draw out a chart like i should, but i get the idea, and i go through it in my head, which is fine, the concept of following information aroudn your program is the key. This is what teachers need to mention when teaching flowcharts.
    PHP and XML
    Let's talk about SAX

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Starting C++ & Computer Science Major
    By learning C++ in forum C++ Programming
    Replies: 8
    Last Post: 12-26-2003, 12:17 PM
  2. upgrade computer ?
    By teeyester in forum Tech Board
    Replies: 4
    Last Post: 10-11-2003, 09:51 PM
  3. Regarding Undergraduate Computer Majors
    By UnregdRegd in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 10-04-2003, 11:55 AM
  4. Computer engineering - programming.
    By Unregistered in forum C Programming
    Replies: 10
    Last Post: 07-15-2002, 02:37 PM
  5. computer sex
    By Unregistered in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 09-17-2001, 07:09 PM