Q╜先森 发表于 2017-6-22 23:06:33

\问题

#include <stdio.h>
#include <stdlib.h>

int main()
{
    {
          printf("@\n\
               / \\n\
               * *\n\
               * *\n\
               * *\n\
             * * * * * * *\n\
         * * * * * * * * *\n\
         * * * * * * * * * * *\n\
               * *\n\
               * *\n\
               * * * *\n\
             * * * * * * *\n\")
               
               
                        
            }
    system("PAUSE");       
    return 0;
}

为什么错

Jinlaips 发表于 2017-6-23 01:49:14

printf 的右引号被 注释掉了,而且还少了分号。

Q╜先森 发表于 2017-6-23 07:12:57

#include <stdio.h>
#include <stdlib.h>

int main()
{
    {
          printf("@\n\
               / \\\n\
               * *\n\
               * *\n\
               * *\n\
             * * * * * * *\n\
         * * * * * * * * *\n\
         * * * * * * * * * * *\n\
               * *\n\
               * *\n\
               * * * *\n\
             * * * * * * *\n");                        
      }
    system("PAUSE");      
    return 0;
}

为什么@会跑其他地方去

wuyuan2011woain 发表于 2017-6-23 08:52:17

Q╜先森 发表于 2017-6-23 07:12
为什么@会跑其他地方去

你看看 你的cpp源代码就知道了

wuyuan2011woain 发表于 2017-6-23 08:55:27

09 TAB
20 空格
*   2A
@ 40

Q╜先森 发表于 2017-6-23 09:00:26

wuyuan2011woain 发表于 2017-6-23 08:55
09 TAB
20 空格
*   2A


谢谢
页: [1]
查看完整版本: \问题