C++整数的个数 解题思路:注意事项:参考代码:#include#include#include#includeusingnamespacestd;intmain(void){intk, 题解列表 2026年02月22日 0 点赞 0 评论 242 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,a,i;/*b为1出现的次数*/ int b=0; int c=0; int d=0; scan…… 题解列表 2023年02月03日 0 点赞 0 评论 497 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b=0,c=0,d=0,i; int a[100]; scanf("%…… 题解列表 2023年01月13日 0 点赞 0 评论 357 浏览 评分:0.0
整数的个数 解题思路:注意事项:参考代码:intn;intnum;intcount1=0,count5=0,count10=0;scanf("%d",&n);for(inti=1;i 题解列表 2026年09月01日 0 点赞 0 评论 125 浏览 评分:0.0
整数的个数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c=0,d=0,e=0; cin>>a; …… 题解列表 2023年12月04日 0 点赞 0 评论 419 浏览 评分:6.5
题解 2803: 整数的个数(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,k,i,j=0,y=0,z=0; scanf("%d",&k); for(i=1;i<=k;i++)…… 题解列表 2022年11月14日 0 点赞 0 评论 820 浏览 评分:8.7
c语言 小白也能看懂 摘要:解题思路:分别设置1,5,10的计数器,每输入一个数,判断是否是1、5、10,如果是,相应的计数器加一注意事项:无参考代码:#include<stdio.h>int main(){ int k,…… 题解列表 2022年11月20日 0 点赞 0 评论 666 浏览 评分:9.3
编写题解 2803: 整数的个数题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int k,a=0,b=0,c=0; cin>>k; int …… 题解列表 2024年05月08日 0 点赞 0 评论 468 浏览 评分:9.9
python 2803: 整数的个数 摘要:参考代码:k = int(input()) arr = map(int, input().split()) one, five, ten = 0, 0, 0 for i in arr: …… 题解列表 2024年03月12日 0 点赞 1 评论 615 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 649 浏览 评分:9.9