题解列表

筛选

骑车与走路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n);int bx = n / 1.2;int bike = n / 3.……

分段函数 -- 简单明了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    double n;    scanf("%lf",&n);    if(0<=n && n<5) / /注……

年龄与疾病

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[100],i; double z=0; double x=0; double c=0; do……

向量点积计算

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[1000],b[1000],c[1000]; int i,sum=0; scanf("%d",……

创建vector数组对n进行分配并搜索

摘要:解题思路:空间换时间,使用创建多个vector存储求完数位和的数,从1开始计算,由于同一数位和的数小的一定在前面,所以直接push_back尾部插入.        插入完成后再用循环对vector的……

最大值和最小值的差

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[10000],i; int max; int min; int difference; sc……

scanf和gets的混合使用

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char a[1001];    int n;    scanf("%d",&n);//scanf结束回车……

买图书的小明

摘要:解题思路:注意事项:参考代码:#includeint main(){ double n,m,s; scanf("%lf %lf",&n,&m); s=n-0.8*m; if(n==10&&m==1) ……

结构体之成绩记录

摘要:解题思路:用结构体数组来解决问题注意事项:见代码参考代码:#include <stdio.h>typedef struct student{ char id[20]; char name[20]; i……