User Profile

Collapse

Profile Sidebar

Collapse
angeldeveloper
angeldeveloper
Last Activity: Apr 20 '07, 01:38 AM
Joined: Apr 9 '07
Location: San Antonio
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • angeldeveloper
    started a topic Student Grades in C++
    in C

    Student Grades in C++

    Code:
    Start
        Declare: lastName, finalGrade, outfile
        Open "grades.dat" For Output As outfile
        Write "Enter last name and final grade separated by spaces: "
        Write "Enter 0 for both when done"
        Read lastName, finalGrade
        While lastName != '0'
            Write outfile, lastName, finalGrade
            Write "Enter last name and final grade separated by spaces:
    ...
    See more | Go to post
    Last edited by Ganon11; Apr 13 '07, 08:42 PM. Reason: code tags added to preserve spacing

  • angeldeveloper
    replied to Student Recods in C++
    in C
    I know it looks right, but i was wondering that my pseudocode is wrong coz I only declare Final Grade, how can i make statement wherein four grades will be computed?
    See more | Go to post

    Leave a comment:


  • angeldeveloper
    started a topic Student Recods in C++
    in C

    Student Recods in C++

    Hey Guys i need a pseudocode that should be look like this :

    Start
    Declare: lastName, finalGrade, outfile
    Open "grades.dat " For Output As outfile
    Write "Enter last name and final grade separated by spaces: "
    Write "Enter 0 for both when done"
    Read lastName, finalGrade
    While lastName != '0'
    Write outfile, lastName, finalGrade...
    See more | Go to post

  • angeldeveloper
    replied to How To Import Excel Into Access
    Hello just import your excel file to access
    See more | Go to post

    Leave a comment:


  • File Manipulation in C++ ... a little help

    A little help guys...

    1. Write a program to create a file called grades.dat. Each line of the file should contain a last name and four scores. Use a sentinel to stop input.

    2. Assume the file you created contains the following data:

    Smith 80 90 80 90
    Jones 70 80 70 80
    Reed 95 90 95 90
    Kirl 100 90 100 90

    Write...
    See more | Go to post

    Leave a comment:


  • angeldeveloper
    started a topic File Manipulation in C++ ... a little help
    in C

    File Manipulation in C++ ... a little help

    Hey guys , is there anybody who can give me a program to this problem.

    1. Write a program to create a file called grades.dat. Each line of the file should contain a last name and four scores. Use a sentinel to stop input.

    2. Assume the file you created contains the following data:

    Smith 80 90 80 90
    Jones 70 80 70 80
    Reed 95 90 95 90
    Kirl 100 90 100 90

    Write a program...
    See more | Go to post
No activity results to display
Show More
Working...