主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
210120
2023年3月17日 22:26
do while循环 sprintf 格式化
P1153
回复 0
|
赞 1
|
浏览 2.4k
利用sprintf 将数字转化为字符串 ,strlen判断长度是否为1,为1 则输出digital root #include <iostream> #include <bitset> #include <string> #include <cmath> #include <cstring> using namespace std; char buf[1010]; int main() { int c; while (true) { sc...
jimapple
2021年5月11日 09:14
在codeblocks里面成功运行,为什么在N诺runtime err
P1153
回复 2
|
赞 0
|
浏览 8.6k
#include <iostream> #include <cstdio> const int maxn = 1e9+10; char ch[maxn]; using namespace std; int solve(int n){ int tmp = n; int res = 0; while(tmp!=0) { &nbs...
csYfZhang
2020年5月6日 12:38
发现了N诺大宝库
P1153
回复 0
|
赞 0
|
浏览 9.2k
#include<iostream> #include<cstdio> #include<string> #include<string.h> #include<cmath> #include<map> #include<vector> #include<queue> #include<algorithm> using namespace std; #define ll int #define MAX 1005 #define inf 0x3ffff...
张大帅比
2020年1月20日 18:45
大佬看看我这错哪了,牛客上可以通过的
P1153
回复 2
|
赞 1
|
浏览 12.1k
#include <stdio.h> //using namespace std; int digital_root(int n){ int a=0; for(;n>0;n/=10) a+=(n%10); return a; } int main(){ int n,dr;  ...
题目
Digital Roots
题解数量
4
发布题解
热门题解
1
大佬看看我这错哪了,牛客上可以通过的
2
do while循环 sprintf 格式化
3
发现了N诺大宝库
4
在codeblocks里面成功运行,为什么在N诺runtime error?