题目 2816: 统计满足条件的4位数个数 摘要:题目链接:https://www.dotcpp.com/oj/problem2816.html ``` #include using namespace std; int main() { …… 文章列表 2023年11月29日 0 点赞 0 评论 148 浏览 评分:0.0
实现strcpy的功能 摘要:#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <assert.h> char* my_strcpy(char* des…… 文章列表 2023年12月06日 0 点赞 0 评论 97 浏览 评分:0.0
题目 2790: 分段函数。 摘要:题目描述 编写程序,计算下列分段函数y=f(x)的值。 y=-x+2.5; 0 …… 文章列表 2023年12月06日 0 点赞 0 评论 141 浏览 评分:0.0
出现次数最多的字母 摘要:#include<stdio.h>#include<string.h>int main(){ char a[10001]; int b[10001]; char c[10001]; scanf("%s…… 文章列表 2023年12月13日 0 点赞 0 评论 98 浏览 评分:0.0
题目 3020: 最大数位置 摘要:``` #include using namespace std; int a[1010]; int main() { int n,t=0; cin >>n; for (int …… 文章列表 2023年12月13日 0 点赞 0 评论 86 浏览 评分:0.0
实现质因数分解 摘要:import java.util.*;public class Main { public static List<Integer> primeFactors(int n) { L…… 文章列表 2023年12月15日 0 点赞 0 评论 72 浏览 评分:0.0
信奥赛原题 摘要:乘坐飞机时,当乘客行李小于等于20公斤时,按每公斤1.68元收费,大于20公斤时,按每公斤1.98元收费,编程计算收费(保留2位小数)。#include <bits/stdc++.h>//用万能头文件…… 文章列表 2023年12月16日 0 点赞 0 评论 114 浏览 评分:0.0
字节的进位 摘要:Byte 字节KB 千字节 1KB=1024b=2^10MB 1000000 百万 1MB=1024KBGB 10^9 1GB=1024MBTB 10^12 1TB=102…… 文章列表 2023年12月17日 0 点赞 0 评论 94 浏览 评分:0.0
各种输入类型 摘要:long long 8 9*10^18 9000000000000000000double 8 1.7*10^308flout …… 文章列表 2023年12月17日 0 点赞 0 评论 82 浏览 评分:0.0
c代码记录之获取字符串长度--指针练习 摘要:原题链接:[获取字符串长度](https://www.nowcoder.com/practice/9a2d212d23f5436c80607d5e68c6d12a?tpId=291&tqId=2185…… 文章列表 2023年12月18日 0 点赞 0 评论 124 浏览 评分:0.0