C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[110]={0}; gets(str); …… 题解列表 2017年08月28日 2 点赞 7 评论 2698 浏览 评分:8.0
蓝桥杯历届试题-九宫重排 (C++代码) 摘要:#include<cstdio> #include<cstring> #include<set> using namespace std; typedef int State[9]; c…… 题解列表 2019年03月16日 12 点赞 6 评论 2937 浏览 评分:8.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int a,b,sum;scanf("%d%d",&a,&b);sum=a+b;prinrf("sum=%d",sum);…… 题解列表 2017年08月30日 0 点赞 1 评论 930 浏览 评分:8.0
P1002 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>struct student{ char name[20]; int score1,score2…… 题解列表 2017年08月30日 3 点赞 0 评论 1567 浏览 评分:8.0
C语言训练-计算1977!* (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int num[500000]={0},N,nHighestPo…… 题解列表 2017年08月31日 0 点赞 0 评论 1442 浏览 评分:8.0
C语言训练-计算一个整数N的阶乘 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,i,j; scanf("%d",&N); j=1; for(i=1;i<=N…… 题解列表 2017年08月31日 0 点赞 0 评论 1436 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://求最大公因数,最小公倍数#include<stdio.h>int maxGY(int,int);//求最大公约数int minGB(int,int);//求最小公倍数…… 题解列表 2017年09月01日 1 点赞 1 评论 622 浏览 评分:8.0
【蟠桃记】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,i; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年09月02日 1 点赞 0 评论 996 浏览 评分:8.0
不容易系列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,a,i,sum; scanf("%d",&N); while(N--) { …… 题解列表 2017年09月04日 0 点赞 0 评论 1012 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.4 (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,c,w; scanf("%d %d %d",&a,&b,&c); if(a>b) w=a; else w…… 题解列表 2017年09月27日 0 点赞 0 评论 1640 浏览 评分:8.0