博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1163: 零起点学算法70——Yes,I can!
阅读量:5889 次
发布时间:2019-06-19

本文共 818 字,大约阅读时间需要 2 分钟。

1163: 零起点学算法70——Yes,I can!

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 938  Accepted: 714
[][][]

Description

 

 Boys and girls:

Good evening.
Welcome to take the select contest. I wish you can be an ACMer, and ACM can bring the happiness of success to you. ACM is a little difficult,but if you try,you can!Nothing is impossible.

 

Input

 

 One line, the ACMer's name. The name is at most 8 characters.

 

Output

 

 You should output one line like the output sample.

Output "I am" then the acmer's name, then ",yes,I can!"

 

Sample Input

 
Mary

 

Sample Output

I am Mary,yes,I can!

 

Source

 
1 #include
2 int main(){3 char a[10];4 while(gets(a)!=NULL){5 printf("I am ");6 printf("%s,yes,I can!",a);7 }8 return 0;9 }

 

转载于:https://www.cnblogs.com/dddddd/p/6686518.html

你可能感兴趣的文章
eap wifi 证书_用openssl为EAP-TLS生成证书(CA证书,服务器证书,用户证书)
查看>>
mysql 应用程序是哪个文件夹_Mysql 数据库文件存储在哪个目录?
查看>>
mysql半同步和无损复制_MySQL半同步复制你可能没有注意的点
查看>>
mysql能看见表显示表不存在_遇到mysql数据表不存在的问题
查看>>
使用mysql实现宿舍管理_JSP+Struts2+JDBC+Mysql实现的校园宿舍管理系统
查看>>
mysql alter 修改字段类型_MySQL ALTER命令:删除,添加或修改表字段、修改字段类型及名称等...
查看>>
mysql中的事务和锁_MySQL - 事务和锁中的互斥?
查看>>
mysql statement讲解_Statement接口详解
查看>>
mysql_print_default_知识点:MySQL常用工具介绍(十 二)——实用程序my_print_defaults、perror...
查看>>
mysql怎么会报错_MySQL启动报错怎么办?
查看>>
python编译exe用于别的电脑上_Python安装教程(推荐一款不错的Python编辑器)
查看>>
flash back mysql_mysqlbinlog flashback 使用最佳实践
查看>>
hive中如何把13位转化为时间_sqoop1 导入 hive parquet 表中 时间戳调整为日期
查看>>
mysql书外键_[转] mysql 外键(Foreign Key)的详解和实例
查看>>
mysql存储引擎模式_MySQL存储引擎
查看>>
python入门小游戏代码_【Python】Python代码实现“FlappyBird”小游戏
查看>>
云服务器怎么卸载mysql数据库_mysql 删除数据库脚本
查看>>
mysql 5.5.57互为主从_MYSQL 5.5.18 互为主从配置成功
查看>>
mysql5002_mysql新手进阶02
查看>>
python类 del_全面了解Python类的内置方法
查看>>