简单的a+b (C++语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b) cout<<a+b…… 题解列表 2017年09月06日 0 点赞 0 评论 1146 浏览 评分:5.4
C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"**************************"<…… 题解列表 2017年09月06日 3 点赞 0 评论 1025 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:这是用户海洋之心的代码,我只是加了点注释,可能注释不是很规范易懂注意事项:参考代码:#include<stdio.h>void move(int a[],int n,int m);int m…… 题解列表 2017年09月07日 0 点赞 0 评论 927 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路: 程序正确,但总是提醒答案错误,是因为结果超出了变量可表示的范围 注意事项: 使用unsigned long int 类型。 参考代码:#include<stdio…… 题解列表 2017年09月08日 0 点赞 0 评论 941 浏览 评分:0.0
小明A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int M,A,B; scanf("%d",&M); while(M--) { …… 题解列表 2017年09月08日 1 点赞 0 评论 1512 浏览 评分:9.9
回文数(一) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n);int fx(int n);int main(){ int M,L,count; scanf("%…… 题解列表 2017年09月08日 0 点赞 0 评论 1292 浏览 评分:0.0
上车人数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int add(int a,int n,int Y){ if(n==1) return a; else if(n==2) r…… 题解列表 2017年09月08日 0 点赞 0 评论 1343 浏览 评分:0.0
大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i; while(g…… 题解列表 2017年09月08日 0 点赞 0 评论 1103 浏览 评分:0.0
最小公倍数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,i; while(scanf("%d%d",&a,&b)!=EOF) { …… 题解列表 2017年09月08日 1 点赞 1 评论 1093 浏览 评分:9.6
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[300]; int i; while(g…… 题解列表 2017年09月08日 2 点赞 0 评论 1893 浏览 评分:9.5