Home > Back-end >  Why the result is like this??? Consult!!!!!!
Why the result is like this??? Consult!!!!!!

Time:03-12





# include "stdio.h"
Void main ()
{
Printf (" * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n ");
Printf (" 1 -- -- -- -- -- -- -- -- -- the ADD (+) \ n ");
Printf (" -- -- -- -- -- -- -- -- -- 2 SUB (-) \ n ");
Printf (" 3 -- -- -- -- -- -- -- -- -- the MUL (*) \ n ");
Printf (" -- -- -- -- -- -- -- -- -- 4 DIV (/) \ n ");
Printf (" * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n ");
}

CodePudding user response:

Before a \ n behind those Spaces rightly into the next row at the beginning,

CodePudding user response:

 # include "stdio.h" 
Void main ()
{
Printf (" * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n ");
Printf (" 1 -- -- -- -- -- -- -- -- -- the ADD (+) \ n ");
Printf (" -- -- -- -- -- -- -- -- -- 2 SUB (-) \ n ");
Printf (" 3 -- -- -- -- -- -- -- -- -- the MUL (*) \ n ");
Printf (" -- -- -- -- -- -- -- -- -- 4 DIV (/) \ n ");
Printf (" * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n ");

}

//* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
//1 -- -- -- -- -- -- -- -- -- the ADD (+)
//2 -- -- -- -- -- -- -- -- -- SUB (-)
//3 -- -- -- -- -- -- -- -- -- the MUL (*)
//4 -- -- -- -- -- -- -- -- -- DIV (/)
//* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
//please press any key to continue..

CodePudding user response:

 printf (" * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n ", "
"1 -- -- -- -- -- -- -- -- -- the ADD (+) \ n", "
"2 -- -- -- -- -- -- -- -- -- SUB \ n" (-)
"3 -- -- -- -- -- -- -- -- -- the MUL \ n" (*)
"4 -- -- -- -- -- -- -- -- -- DIV (/) \ n", "
"* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * \ n");

CodePudding user response:

You are \ n carriage returns, and Spaces are not poisonous
  • Related