本文介绍了获取三个外星人的名字并生成一个关于外星人的故事作为输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

获取三个外星人的名字并生成一个关于外星人的故事作为输出

测试用例



输入1



输入外星人姓名:



Zod



Clod



Zoodube





输出1



外星人的名字是Zod,Clod和Zoodube。一颗流星击中了Zod的宇宙飞船。一个明星划伤了Clod的宇宙飞船。但Zoodube修复了Zod和Clod的宇宙飞船。这三个人成了朋友,来自BYG(这意味着蓝黄绿色)。



我尝试了什么:



#include< stdio.h>

int main()

{

char ch1 [10],ch2 [20],ch3 [30];

printf(输入外星人名字:);

scanf(%s%s%s ,ch1,ch2,ch3);

printf(外星人的名字是%s,%s和%sA米,命中%s的宇宙飞船。明星划伤%s的宇宙飞船。但是%s固定%s和%s的宇宙飞船。三人成了朋友,来自工厂BYG(意思是蓝黄绿),ch1,ch2,ch3);

返回0;

}

Get three alien names and generate a story about the aliens as output
Test Case

Input 1

Enter alien names:

Zod

Clod

Zoodube


Output 1

The alien names are Zod, Clod and Zoodube. A meteor hit Zod’s spaceship. A star scratched Clod’s spaceship. But Zoodube fixed Zod and Clod's spaceships. The three became friends and are from the planet BYG (which means BLUE YELLOW GREEN).

What I have tried:

#include<stdio.h>
int main()
{
char ch1[10],ch2[20],ch3[30];
printf("Enter alien names:");
scanf("%s %s %s",ch1,ch2,ch3);
printf("The alien names are %s,%s and %s.A metero hit %s's spaceship.A star scratched %s's spaceship.But %s fixed %s and %s's spaceship.The three became friends and are from the plant BYG(which means BLUE YELLOW GREEN)",ch1,ch2,ch3);
return 0;
}

推荐答案



这篇关于获取三个外星人的名字并生成一个关于外星人的故事作为输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 22:17