Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

Unable to compile/run a program under MS's visual studio c++ 2010.... #include int main() { int p,n; float r,si; p=1000; n=3; r=8.5; si=p*n*r/100; printf("%f/n" ,si); return 0; } when tried to run (Ctrl F5), the black screen appears with ''255.000000/n Press any key to continue'' instruction and suddenly disappears when any key is pressed..

OpenStudy (anonymous):

Also debugging (F5) it produces a screen which disappears within a sec.

OpenStudy (farmdawgnation):

It sounds like your program is actually running. Although, you should change the "/n" to a "\n" in your printf.

OpenStudy (anonymous):

yea.. but the output screen doesn't stays for me to input values and see results...

OpenStudy (farmdawgnation):

Ah, right, so that's because you don't have any functions that take input... hold on one sec....

OpenStudy (farmdawgnation):

Look at this: http://www.cplusplus.com/reference/clibrary/cstdio/gets/ :)

OpenStudy (anonymous):

so can you please write a simple c++ program which I may copy paste that give results...

OpenStudy (farmdawgnation):

Well, I'll show you an example program. So gets() reads a string from the input. So you'll want to provide some sort of prompt with printf. So, printf("Enter a number: "); Then you'll want to retrieve a number with gets... char number[5]; gets( &number ); Then you'll want to change that to an integer, which should look something like... int numberInteger = atoi(number) You'll still have some stuff to fill in, but after it's a number you'll be able to use it in calculations. Make sense?

OpenStudy (anonymous):

This is the error message I get at the end of output The program '[5700] 55.exe: Native' has exited with code 0 (0x0). in both situations.

OpenStudy (farmdawgnation):

The code I provided doesn't do everything you need it to do. You need to take the pieces I gave you and stitch them into your program.

OpenStudy (anonymous):

yes, I did and with several other programs which do run on TC compiler...

OpenStudy (farmdawgnation):

Well, exited with code 0 means the program quit normally. I don't know what else to say. I'm not much use with the Visual Studio world. I exist mostly in the GCC world.

OpenStudy (anonymous):

BTW thank you ...

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!