hlg2020

All is well
Time Limit: 1000 MS Memory Limit: 32768 K
Total Submit: 46(28 users) Total Accepted: 28(28 users) Rating: Special Judge: No
Description
All is well means “All is well”
Input
NULL
Output
All is well\n
Sample Input

NULL

Sample Output

All is well\n

 

Source
杨和禹求职记
Author

 关键是'\n'的输出技巧之一是运用显示,asc码转化,代码如下;#include<stdio.h>
int main()
{
    printf("All is well");
    printf("%c",92);
    printf("n\n");
    return 0;
}

posted @ 2014-02-06 18:56  软&风尘  阅读(187)  评论(0)    收藏  举报