文章列表
1349基础解法不适用(Python)
摘要:n = int(input())lst_name = []lst_ser = []lst_name.extend([input() for i in range(n)])lst_ser.extend(……
1303基础解法不适用(Python)
摘要:num = int(input())dic = {}for i in range(num) : str_ = input() dic[str_] = dic.get(str_, 0) + ……
题目 1042: [编程入门]电报加密
摘要:#include <stdio.h>#include <string.h>void fun(char a[]){ for (int i = 0; i < strlen(a); i++) ……
cs小白第一个博客?
摘要:作为一名刚上大一的cs学生,在上大学前从未接触过编程。说到这里还是有点小小的遗憾,因为高中勇气不足没能尝试学信竞。不过没有关系,现在完全不算晚,我也不必看着他人的样子而隐隐担忧,走出自己的节奏就好。在……
用math.h处理立方运算
摘要:#include<stdio.h>
#include<math.h>
int main(void)
{
int number, a, b, c;
for (number = 100; ……
不使用string.h头文件计算字符长度
摘要:#include<stdio.h>
#include<math.h>
int main(void)
{
int num, count=0;
scanf_s("%d", &num);
……