2818:老套路-(除十模十)-C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void func(long long n); int main() { long long a; scanf("%…… 题解列表 2022年12月20日 0 点赞 1 评论 399 浏览 评分:9.9
暴力解法,最大限度减低难度 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,ge; scanf("%d",&n);//遍历把每一位个位数字拿出来 for(in…… 题解列表 2023年03月06日 0 点赞 0 评论 182 浏览 评分:9.9
题目 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int x,y; x=n; …… 题解列表 2022年11月26日 0 点赞 0 评论 324 浏览 评分:9.9
用数组的方法——简单且粗暴 摘要:解题思路:换个思路,输入的是一串字符。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; int i;…… 题解列表 2022年12月31日 0 点赞 2 评论 293 浏览 评分:9.9
本菜鸟的分离,大佬们过目 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[9],i,n,x; scanf("%d",&x); for(i=0;i<10;i+…… 题解列表 2023年12月20日 0 点赞 0 评论 67 浏览 评分:0.0
题解 2818: 分离整数的各个数位 c++ 摘要:解题思路:自己想注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;…… 题解列表 2024年02月26日 0 点赞 0 评论 131 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int t; scanf("%d",&a); while(a>0){ …… 题解列表 2024年01月27日 0 点赞 0 评论 116 浏览 评分:0.0
字符串倒序输出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char str[100]; gets(str); int len=str…… 题解列表 2024年11月27日 0 点赞 1 评论 126 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:int main(){ int n,s=0; scanf("%d",&n); for(int i=n;i!=0;i/=10) { …… 题解列表 2023年12月13日 0 点赞 0 评论 189 浏览 评分:0.0
分离整数的各个数位 2818 摘要:解题思路:#include <iostream>using namespace std;int main(){ long long n; cin>>n; while(n) { …… 题解列表 2024年01月16日 0 点赞 0 评论 60 浏览 评分:0.0