我最近开始学习Swift,这与我以前的工作视角完全不同。当我编写代码时,我发现这很有趣,比如做测验。但是我现在已经在这个谜题上苦苦挣扎了几个小时,非常感谢你们中的任何一个可以帮助我。 这是测验,我的代码如下(看起来很荒谬,我不知道该怎么做) 问题
我写的是什么
答案 0 :(得分:2)
看起来问题是您如何将adverb
,adjective
和pluralNoun
插入字符串中。试试这个工作正常。
func generator(adverb: String, adjective: String, pluralNoun: String) -> String {
return "Whew! I've been \(adverb) learning how to build \(adjective) app with Udacity. I hope they teach me about \(pluralNoun) soon. That would be helpful."
}