欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HackerRank - C语言 - Introduction - "Hello World!" in C

程序员文章站 2024-02-29 11:48:04
...

“Hello World!” in C

任务

要求在一行打印“Hello World!",然后将已经提供的输入字符串打印标准输出。

解答

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

int main() 
{
    char s[100];
    scanf("%[^\n]%*c", &s);
  	
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */ 
    printf("Hello, World!\n");
    printf("%s", s);
    // puts(s);
    return 0;
}
相关标签: HackerRank

上一篇: 深入理解 Java注解及实例

下一篇: