Computer problems,Computer help
*AX SOFT>>>Programming & Design

For loop qustion?


#include<stdio.h>
int main()
{
int count; char response ;
for (count= 1; response!='N'; count++)
{

printf("%d\n",count);printf(" continue : \n");
scanf("%c",&response);
}

return 0;
}


Hello...
when it runs,the result is such as follows:
1
continue:
a
2
contiune:
3
continue:
b
4
contiune:
5
contiune:
N

However..i want it to be:
1
continue:
a
2
contiune:
b
3
contiune:
N

..........what's wrong with it???

Thank you very much!

er...i mean when i input a, if comes:
2
continue
3
contuine

what i want is only :"2
continue " comes....

You have to clear the '\n' from the buffer before you read the next character. If they were to put more into the buffer, then you should loop until you reach the '\n'

#include<stdio.h>
int main()
{
int count;
char response;
for (count= 1; response!='N'; count++)
{

printf("%d\n",count);
printf(" continue : \n");
scanf("%c",&response);
while(getchar() != '\n'); // Clears the buffer for the next read
}

return 0;
}

what?

whoa would u repeat that again for me

idk

EVERYONE GO HERE! EASY 12 POINTS!http://answers.yahoo.com/question/index;...

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • How do I teach myself how to Program?

    If you are starting out and you want to learn a useful language, may I strongly suggest Python. It is free, very powerful, very easy to learn, and has a growing and dedicated user base. It is also ...

  • If i needed to use frontpage for school and i dowloaded a free trial...?

    First of all you should know that Frontpage was discontinued so finding a trial might be difficult. As for the files created with frontpage, they can be accessed on any other computer that has f...

  • XHTML (Extensible Hypertext Markup Language)?

    This isnt a question though more like just a comment... anyway XML is a way you can make you own htmal basicly... in html you have tags like <a href> that let you in this case make a li...

  • How can CAPTCHAs be cracked?

    ...

  • Photoshop web design question?

    It all depends on how you desire your website to look overall. If you're designing a portal-like Website (i.e. Yahoo, Google, etc..) then it would be best to use a CMS (Content Management Syst...

  • Dreamweaver CS3 HELP!!!!?

    So, you're basically saying that you want to create an internet shopping site? Well, you can't just do that in Dream Weaver (At least I'm not aware of that). You will need to learn ....

  • I need to create a website where people can create own webpage which is visible to others like a Directory.?

    You can post your requirement at freelance website like ...

  • How do I create an ObjectDock docklet?

    ObjectDock docklet SDK now available ...

  •  

    Categories--Copyright/IP Policy--Contact Webmaster