C++ 利用string创建str对象 摘要:解题思路:利用c++ string 创建str对象 类似于字符数组注意事项:第二行末尾没有空格参考代码:/**********************************************…… 题解列表 2022年02月10日 0 点赞 0 评论 329 浏览 评分:0.0
[编程入门]数字的处理与判断 (C语言代码) 摘要:解题思路:注意事项:代码的准确度。参考代码:#include<stdio.h>int main(){ long int x; int sum=0,a; int m=0,n=0,v=0,c=0; sca…… 题解列表 2019年04月24日 0 点赞 0 评论 433 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int g,s,b,q,w,x; scanf("%d",&x); w=x/10000; …… 题解列表 2017年07月19日 11 点赞 4 评论 1088 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include #include int main() {int n,N,i,a[10]; scanf("%d",&N); n=(int)log10(N)+1; printf("%d…… 题解列表 2020年05月09日 0 点赞 0 评论 210 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b=1,d,e,i; int c[100]; …… 题解列表 2020年07月21日 0 点赞 0 评论 164 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,m,t,a=1; int b,x=1,d; scanf("%d",&n); …… 题解列表 2018年10月11日 0 点赞 0 评论 274 浏览 评分:0.0
任意正整型皆可处理,纯整型操作 摘要:解题思路: 输入数字部分->判断长度部分->分割数字部分->长度输出->正序输出->反序输出注意事项: 输入数是整型 没有写负整形长度判断部分 & 题解列表 2023年09月23日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include int main() { int a,b=0,c[10],i=0; scanf("%d",&a); while(a) { c[i++]=a%10; b…… 题解列表 2019年07月23日 0 点赞 0 评论 400 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int diginum(int n){ int count=0; while(n>0…… 题解列表 2018年08月23日 0 点赞 0 评论 416 浏览 评分:0.0
c++处理,利用do-while循环解决 摘要:解题思路:(1)先想好怎么计算出位数?利用do-while循环指令,将输入的数分别除以十,得到余数和商,判断商是否为0;不是0则继续循环; do { b[i] = a % 10; a…… 题解列表 2021年12月28日 0 点赞 0 评论 589 浏览 评分:0.0