0
What is missing? :(
Cheer Creator Challenge C++
3 Antworten
+ 1
#include <iostream>
using namespace std;
int main() {
signed int yard;
cin >> yard;
switch (yard) {
case 0:
cout << "shh";
break;
case 1 ... 10:
for (int i = 0; i < yard; i++) {
cout << "Ra!"; }
break;
default:
cout << "High Five";
break;
}
return 0;
}
+ 1
I cant pass the fith test and cant figure out why :/
+ 1
Can one throw backwards?