T2752-整型数据类型存储空间大小--步骤清晰 摘要:解题思路:在Python中需要使用ctypes模块模拟C语言数据类型c_int()和c_short()是ctypes提供的C兼容数据类型注意事项:参考代码:fromctypes…… 题解列表 2025年11月04日 1 点赞 0 评论 367 浏览 评分:0.0
T2753-浮点型数据类型存储空间大小--步骤清晰 摘要:解题思路:注意事项:参考代码:fromctypesimport*a=c_float()b=c_double(…… 题解列表 2025年11月04日 0 点赞 0 评论 195 浏览 评分:0.0
T2755-类型转换1--步骤清晰 摘要:解题思路:注意事项:参考代码:fromctypesimport*a=c_int(32768)b=c_shor…… 题解列表 2025年11月04日 0 点赞 0 评论 423 浏览 评分:0.0
T2756-类型转换2--步骤清晰 摘要:解题思路:注意事项:参考代码:fromctypesimport*a=c_double(1.000000001)b=&nb…… 题解列表 2025年11月04日 0 点赞 0 评论 233 浏览 评分:0.0
Py2795-财务管理--两行解决 摘要:解题思路:注意事项:参考代码:n=list(float(input())for_inrange(12))print(f…… 题解列表 2025年11月04日 0 点赞 0 评论 281 浏览 评分:0.0
1022:帅选n以内的素数 摘要:解题思路:注意事项:参考代码:方法一:不使用子函数#include<stdio.h>#include<math.h>int main(){ int n,k,i,j; scanf…… 题解列表 2025年11月05日 0 点赞 0 评论 497 浏览 评分:0.0
就是数字有点大,我用的long 和%ld 摘要:解题思路:注意事项: 这里我用的是long 用int 的话在后面数值越来越大,会超出int的限定值,从而变成负数。还有要用%ld别搞错了参考代码:#…… 题解列表 2025年11月05日 1 点赞 0 评论 322 浏览 评分:0.0
1029:自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ void IsPrime(int n); int num; scanf(&…… 题解列表 2025年11月05日 1 点赞 0 评论 279 浏览 评分:0.0
2850:将输入的字符串转变成亲朋字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[101]; //scanf("%s…… 题解列表 2025年11月05日 1 点赞 0 评论 318 浏览 评分:0.0