【发布时间】:2019-11-30 12:23:53
【问题描述】:
定义一个函数,接收一个字符数组(及其大小),然后按顺序打印出所有未出现在数组中的小写字母。
例如:
输入:
Article 1: All human beings are born free and equal in dignity and rights.
输出:jkpvwxz
到目前为止,这是我的代码:
#include <iostream>
using namespace std;
void missing(char string[], int size) {
for (int i = 0; i < size; i ++) {
}
}
int main(){
}
问题
待定
【问题讨论】:
-
您好像忘记为 your 任务编写代码了。
-
是这样的,我们不应该解决你得到的任务,你需要表现出自己尝试和解决问题的努力,如果你在某个点上遇到困难,那么社区就会提供帮助;请阅读stackoverflow.com/help/how-to-ask
-
如果你还没有决定一个问题,就没有必要发帖了吗?
标签: c++ loops for-loop while-loop c-strings