C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); a > b ? a > …… 题解列表 2018年06月20日 0 点赞 0 评论 843 浏览 评分:0.0
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 评论 956 浏览 评分:0.0
数字整除 (C++代码)(大数除法) 摘要:解题思路: 这里不需要算出来结果,除到最后一位的时候判断是不是 17 的倍数就行了参考代码:#include<bits/stdc++.h> using namespace std; …… 题解列表 2018年06月21日 0 点赞 0 评论 1199 浏览 评分:0.0
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n; while(cin>>n) {…… 题解列表 2018年06月21日 4 点赞 0 评论 1297 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; w…… 题解列表 2018年06月21日 0 点赞 0 评论 1405 浏览 评分: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 评论 963 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int a,n; …… 题解列表 2018年06月22日 0 点赞 0 评论 1372 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C++代码) 简单明了 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a1,a2; in…… 题解列表 2018年06月22日 0 点赞 0 评论 678 浏览 评分:0.0
简单编码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; w…… 题解列表 2018年06月22日 1 点赞 0 评论 1304 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:使用另一个数组就不用考虑删除的情况注意事项:参考代码:#include <string.h>#include <stdio.h>int main (){ char s[80],a[80]; …… 题解列表 2018年06月22日 0 点赞 0 评论 879 浏览 评分:0.0