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

本文共 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

你可能感兴趣的文章
从JDK源码角度看Short
查看>>
HTTP/2特性及其在实际应用中的表现
查看>>
解密Angular WebWorker Renderer (二)
查看>>
parceljs 中文文档24小时诞生记
查看>>
五年 Web 开发者 star 的 github 整理说明
查看>>
Docker 部署 SpringBoot 项目整合 Redis 镜像做访问计数Demo
查看>>
Android一种常见的布局困扰
查看>>
ReactNative字体大小不随系统字体大小变化而变化
查看>>
看剧流畅还省电?视频类应用预缓存策略功耗评测详解
查看>>
从零搭建自己的SpringBoot后台框架(六)
查看>>
微信App支付全解析
查看>>
[单刷APUE系列]第四章——文件和目录[1]
查看>>
程序员思维看爱情是什么?
查看>>
RN与原生交互(一)——基本页面跳转
查看>>
android消息机制—Looper
查看>>
中台之上(五):业务架构和中台的难点,都是需要反复锤炼出标准模型
查看>>
为什么中台是传统企业数字化转型的关键?
查看>>
使用模板将Web服务的结果转换为标记语言
查看>>
inno setup 打包脚本学习
查看>>
php 并发控制中的独占锁
查看>>