拆分位数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ int n; cin>>n; for(int…… 题解列表 2018年04月17日 1 点赞 0 评论 694 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c,number;scanf("%d",&number);a=number/100;b=(numb…… 题解列表 2017年12月04日 1 点赞 0 评论 558 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:int 数据除数取整,456/100=4;求模。注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d",&a…… 题解列表 2018年10月31日 0 点赞 0 评论 319 浏览 评分:0.0
拆分位数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; scanf("%d",&d); a=d%10; b=d/10%10; c=d/…… 题解列表 2020年11月28日 0 点赞 0 评论 177 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:主要是取模的问题注意事项:取模 % 求用它左边的值除以右边的数后的余数 5%3 2 (%运算符两侧的操作数必须为整数) 参考代码:#include<stdio.…… 题解列表 2018年08月20日 1 点赞 1 评论 364 浏览 评分:0.0
简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,g,s,b; scanf("%d",&i); b=i/100%10; s=i…… 题解列表 2024年01月10日 0 点赞 0 评论 97 浏览 评分:0.0
1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n = 0; cin >>…… 题解列表 2022年10月09日 0 点赞 0 评论 83 浏览 评分:0.0
拆分位数-题解(Java代码)理解不了我退网 摘要: import java.util.Scanner; public class P1670 { public static void main(St…… 题解列表 2020年03月30日 0 点赞 0 评论 499 浏览 评分:2.0
拆分位数 (C语言代码)字符倒着输出 摘要:解题思路:注意事项:参考代码: printf("%c %c %c", getchar(), getchar(), getchar());…… 题解列表 2021年11月20日 0 点赞 0 评论 151 浏览 评分:2.0