简单编码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; w…… 题解列表 2018年06月22日 1 点赞 0 评论 1695 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int a,n; …… 题解列表 2018年06月22日 0 点赞 0 评论 2014 浏览 评分: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 评论 1279 浏览 评分:0.0
优质题解 C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:这里输入字符串中的字符,一般是ASCII字符,从0到255,范围不大;采用查表v[256]的方法,例如'a'是元音字母,那么v['a']就设置为非零,if(v…… 题解列表 2018年06月22日 12 点赞 48 评论 11575 浏览 评分:7.3
Tom数 (C++代码) 摘要:#include <iostream> #include <cmath> using namespace std; long long n; int main() { whil…… 题解列表 2018年06月21日 7 点赞 0 评论 1884 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题12.1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; w…… 题解列表 2018年06月21日 0 点赞 0 评论 1952 浏览 评分:0.0
蓝桥杯算法提高VIP-剪刀石头布 (C++代码) 摘要:#include <bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>m>>n; if(m==n) co…… 题解列表 2018年06月21日 5 点赞 2 评论 1447 浏览 评分:6.7
母牛生小牛 (C++代码) 摘要:解题思路:注意事项:水题水题参考代码:#include <bits/stdc++.h> using namespace std; int main() { int n,a[55]={0…… 题解列表 2018年06月21日 6 点赞 0 评论 1793 浏览 评分:9.3
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n; while(cin>>n) {…… 题解列表 2018年06月21日 4 点赞 0 评论 1976 浏览 评分:0.0
数字整除 (C++代码)(大数除法) 摘要:解题思路: 这里不需要算出来结果,除到最后一位的时候判断是不是 17 的倍数就行了参考代码:#include<bits/stdc++.h> using namespace std; …… 题解列表 2018年06月21日 0 点赞 0 评论 1706 浏览 评分:0.0