二级C语言-阶乘公式求职 摘要:```cpp #include using namespace std; double fact(double k){ //求阶乘 double w=1; for(double…… 题解列表 2022年03月05日 0 点赞 0 评论 358 浏览 评分:0.0
A+B for Input-Output Practice (I) 摘要: ```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) cout…… 题解列表 2022年03月05日 0 点赞 0 评论 303 浏览 评分:0.0
A+B for Input-Output Practice (II) 摘要:```cpp #include using namespace std; int main() { int a,b,c; cin>>c; for(int i=1;i>a>>…… 题解列表 2022年03月05日 0 点赞 0 评论 384 浏览 评分:0.0
A+B for Input-Output Practice (III 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b){ if(a==0&…… 题解列表 2022年03月05日 0 点赞 0 评论 281 浏览 评分:0.0
字符串输入输出函数-题解 摘要:def GetReal(inpn): print(inpn) def GetString(inps): print(inps) def main(): inpn = …… 题解列表 2022年03月05日 0 点赞 0 评论 556 浏览 评分:0.0
A+B for Input-Output Practice (IV) 摘要:```cpp #include using namespace std; int main() { int a[100],b,n,sum; while(cin>>n&&n!=0){ …… 题解列表 2022年03月05日 0 点赞 0 评论 284 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要:```cpp #include using namespace std; int main() { int a[100],b,n,w; cin>>w ; //输入需求的组数…… 题解列表 2022年03月05日 0 点赞 0 评论 280 浏览 评分:0.0
A+B for Input-Output Practice (VI) 摘要:```cpp #include using namespace std; int main() { int a[100],b,n; while(cin>>n){ b=0;…… 题解列表 2022年03月05日 0 点赞 0 评论 314 浏览 评分:0.0
A+B for Input-Output Practice (VII) 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b){ cout…… 题解列表 2022年03月05日 0 点赞 0 评论 357 浏览 评分:0.0
A+B for Input-Output Practice 摘要:就相当于直接在题A+B for Input-Output Practice (V)的输出中加一个endl就可以了。 ```cpp #include using namespace std; …… 题解列表 2022年03月05日 0 点赞 0 评论 253 浏览 评分:0.0