Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. else if (userInput == 'c' || userInput == 'C') {
  2. float userInputCredits = 0.0;
  3. printf("Plesae enter min number of credits: ");
  4. scanf("%f", &userInputCredits);
  5. float credits = 0.0;
  6. while (courses[index]!=-1) {
  7. credits = ((courses[index]>>1) & 7) + (courses[index] & 1)/10.0;
  8. if (credits >= userInputCredits) {
  9. getListing(courses[index]);
  10. }
  11. index++;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement