1059 这是什么神仙题,来看看 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a,sum=0,m=2; scanf("%d",&n); for(a=0;a…… 题解列表 2021年11月04日 0 点赞 0 评论 379 浏览 评分:0.0
关于 str(input().split()) input().split()的区别 摘要:解题思路:注意事项:参考代码:s=str(input().split())s2=input().split()print(type(s))print(type(s2))j=1for i in s: …… 题解列表 2021年11月04日 0 点赞 0 评论 1219 浏览 评分:9.9
数字逆序输出简便方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d…… 题解列表 2021年11月04日 0 点赞 0 评论 280 浏览 评分:2.0
结构体解题(c语言代码) 摘要:#include <stdio.h> #include <string.h> struct stu { char s[20]; int f; }; int main() { i…… 题解列表 2021年11月04日 0 点赞 0 评论 799 浏览 评分:9.9
拆分位数 秒掉 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,n; scanf("%d",&n); a=n%100%10; b=n%100/10; c=n…… 题解列表 2021年11月04日 0 点赞 0 评论 335 浏览 评分:0.0
求袁的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a=3.1415926,r,s; scanf("%f",&r); s=a*r*r; printf("…… 题解列表 2021年11月04日 0 点赞 0 评论 362 浏览 评分:0.0
奇数偶数分开输出(c语言代码) 摘要:#include <stdio.h> int main() { int a[15],b[10],c[10],n1=-1,n2=-1,i,j,t; for(i=0;i<10;i++) …… 题解列表 2021年11月04日 0 点赞 0 评论 1160 浏览 评分:8.7
想的太复杂了 摘要:解题思路:看了题解才知道我是多么的蠢,加油加油,学起来.写的时候大家一定要注意输出格式不要出错了就行!参考代码:#include<iostream>using namespace std;#inclu…… 题解列表 2021年11月04日 0 点赞 0 评论 659 浏览 评分:0.0
2630 简单题解(c语言) 摘要:#include <stdio.h> int main() { int a[10005],n,x,y,k=0,i; scanf("%d",&n); while(n--) { …… 题解列表 2021年11月04日 0 点赞 0 评论 664 浏览 评分:9.0
计算数字个数---详细讲解---(Python) 摘要:Python 通过遍历字符串判断字符是否为数字 ```python n=input() s=0 for i in n: if i.isdigit(): s=s+1…… 题解列表 2021年11月04日 0 点赞 0 评论 731 浏览 评分:9.9