编写题解 1132: 最大数问题 数组 通俗易懂 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[100],i,j=0,max; for(i=0…… 题解列表 2021年11月05日 0 点赞 0 评论 1050 浏览 评分:9.9
初学者的拙劣方法 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main(){ int a[9]; int b; int i; for(i = 0;i<9;i++) …… 题解列表 2021年11月04日 0 点赞 0 评论 347 浏览 评分:0.0
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 评论 265 浏览 评分: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 评论 1064 浏览 评分: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 评论 156 浏览 评分:2.0
结构体解题(c语言代码) 摘要:#include <stdio.h> #include <string.h> struct stu { char s[20]; int f; }; int main() { i…… 题解列表 2021年11月04日 0 点赞 0 评论 520 浏览 评分: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 评论 215 浏览 评分: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 评论 188 浏览 评分: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 评论 908 浏览 评分:8.7
想的太复杂了 摘要:解题思路:看了题解才知道我是多么的蠢,加油加油,学起来.写的时候大家一定要注意输出格式不要出错了就行!参考代码:#include<iostream>using namespace std;#inclu…… 题解列表 2021年11月04日 0 点赞 0 评论 422 浏览 评分:0.0