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

HackerRank - C语言1 - Hello World! in C(代码参考)

程序员文章站 2024-02-29 11:51:58
...
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>

int main() 
{
	
    char s[100];                  //定义变量字符串并设定长度规则
    scanf("%[^\n]%*c", &s);     //读取你的输入,并传值到刚刚定义得字符串s,因为题目要求是输入一行字符串,所以%[^\n]%*c。可参考链接
  	printf("Hello, World!\n");  //直接打印出这句话,这是题目的要求。
    printf("%s",s);      //打印出你输入的,传值后的变量字符串s
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */    
    
    return 0;
}

按英文scan是扫描、读取,也就是读你所输入的语句,C语言成了scanf
print是输出、打印,C语言成了printf
两个格式差不多,前面是内容,后面是变量值。再注意不同类型的不同符号格式,以此类推,举一反三。

涉及的知识可以参考https://zhidao.baidu.com/question/100829636.htmlhttps://blog.csdn.net/qq_30007603/article/details/81164232