Python_zhang
Python_zhang
全部文章
分类
题解(93)
归档
标签
去牛客网
登录
/
注册
Python_zhang的博客
全部文章
(共84篇)
题解 | #取近似值#
#include <stdio.h> #include <string.h> // c取int会取整,所以+0.5小数<0.5还是取整 小数>=0.5会取整+1 //要点 强制类型转换(int)(num) int main() { float num; scanf...
C
2022-01-03
2
473
题解 | #质数因子#
#include<stdio.h> //long int n //质因子分解P1^ P2^ P3^找到一个p之后除尽 //这样可能剩个大质数或者1 大质数输出 int isprime(int n); int main() { long int n; scanf("%ld...
C
2022-01-03
0
374
题解 | #进制转换#
#include <stdio.h> #include <string.h> //%x c 读取16进制数 int main() { int a; while(scanf("%x",&a)!=EOF) printf("%d\n",a); return 0; }
C
2022-01-03
0
360
题解 | #字符串分隔#
#include <stdio.h> #include <string.h> // 读取>str[100] //拆分 len= strlen <=8 输出补0 //>8 i=len/8 j=len%8 0-i-1全额输出 **这里输出就用strncpy和s...
C
2022-01-01
0
433
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页