本菜鸟的分离,大佬们过目
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[9],i,n,x; scanf("%d",&x); for(i=0;i<10;i+……
分离整数的各个数位 2818
摘要:解题思路:#include <iostream>using namespace std;int main(){ long long n; cin>>n; while(n) { ……
题解 2818: 分离整数的各个数位 c++
摘要:解题思路:自己想注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;……
2818 while解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int x,y; scanf("%d",&a); x=a; whil……
2025/8/1刷题记录
摘要:解题思路:通过%10取出个位数 通过/10消除个位数注意事项:参考代码:#include<stdio.h>int main(){ //y记录最后一位数字 ……
题目 2818: 分离整数的各个数位
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int x,y; x=n; ……
2818:老套路-(除十模十)-C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
void func(long long n);
int main() {
long long a;
scanf("%……