首页 > 其他 > 详细

hlg2020

时间:2014-02-07 08:24:29      阅读:638      评论:0      收藏:0      [点我收藏+]
All is well
Time Limit: 1000 MS Memory Limit: 32768 K
Total Submit: 46(28 users) Total Accepted: 28(28 users) Rating:bubuko.com,布布扣 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;
}

hlg2020

原文:http://www.cnblogs.com/lxb1243816632/p/3538943.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!