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 评论 277 浏览 评分: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 评论 281 浏览 评分:0.0
字符串输入输出函数-题解 摘要:def GetReal(inpn): print(inpn) def GetString(inps): print(inps) def main(): inpn = …… 题解列表 2022年03月05日 0 点赞 0 评论 554 浏览 评分: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 评论 279 浏览 评分: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 评论 383 浏览 评分:0.0
蓝桥杯算法训练VIP-数位分离(指针轻松解决) 摘要:```c #include int main() { char start[5]; scanf("%s", start); char* p; p = st…… 题解列表 2022年03月05日 0 点赞 0 评论 480 浏览 评分:9.9
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 评论 299 浏览 评分:0.0
二级C语言-阶乘公式求职 摘要:```cpp #include using namespace std; double fact(double k){ //求阶乘 double w=1; for(double…… 题解列表 2022年03月05日 0 点赞 0 评论 356 浏览 评分:0.0
二级C语言-成绩归类 摘要:```cpp #include using namespace std; int main() { int a[200]={0}; //初始化 int b=0,c=0,d…… 题解列表 2022年03月05日 0 点赞 0 评论 279 浏览 评分:0.0
1686: 数据结构-定位子串 摘要:解题思路:注意事项:参考代码:while True: try: a,b=input().split() print(a.find(b)+1) e…… 题解列表 2022年03月05日 0 点赞 0 评论 391 浏览 评分:0.0