teacher留的题可以帮忙编写一下么,我不会啊……帮帮我吧!
输入字符按照格式输出即可
你题目的解答代码如下:
#include<stdio.h>
int main()
{
char a,b,c;
scanf("%c%c%c", &a, &b, &c);
printf("hello , %c , %c and %c!\n",a,b,c);
return 0;
}
如有帮助,请点击我的回答下方的【采纳该答案】按钮帮忙采纳下,谢谢!
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
int main(void)
{
char a, b, c;
scanf("%c%c%c", &a, &b, &c);
printf("hello,%c,%cand%c\n", a, b, c);
}