C语言程序设计教程(第三版)课后习题11.12 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=105; int a[M][2],b[M][2]; int…… 题解列表 2018年06月20日 0 点赞 0 评论 1289 浏览 评分:0.0
数字整除 (C++代码)(大数除法) 摘要:解题思路: 这里不需要算出来结果,除到最后一位的时候判断是不是 17 的倍数就行了参考代码:#include<bits/stdc++.h> using namespace std; …… 题解列表 2018年06月21日 0 点赞 0 评论 1452 浏览 评分:0.0
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n; while(cin>>n) {…… 题解列表 2018年06月21日 4 点赞 0 评论 1678 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; w…… 题解列表 2018年06月21日 0 点赞 0 评论 1731 浏览 评分:0.0
IP判断 (C语言代码)容易理解 摘要:解题思路: 就这样吧!注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; int n=1; in…… 题解列表 2018年06月22日 2 点赞 0 评论 1155 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int a,n; …… 题解列表 2018年06月22日 0 点赞 0 评论 1740 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 简单明了 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a1,a2; in…… 题解列表 2018年06月22日 0 点赞 0 评论 828 浏览 评分:0.0
简单编码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; w…… 题解列表 2018年06月22日 1 点赞 0 评论 1570 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:使用另一个数组就不用考虑删除的情况注意事项:参考代码:#include <string.h>#include <stdio.h>int main (){ char s[80],a[80]; …… 题解列表 2018年06月22日 0 点赞 0 评论 1137 浏览 评分:0.0
大神老白 (C语言代码) 摘要:解题思路:直接运用绝对值函数转化。注意事项:参考代码:#include <stdio.h>#include<math.h>int main (){ int n,i,a,sum=0; while(sca…… 题解列表 2018年06月22日 0 点赞 0 评论 1542 浏览 评分:0.0