主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年3月7日 17:42
判断数字位置 题解:C
P1439
回复 0
|
赞 0
|
浏览 358
#include <stdio.h> int main() { char s[51]; int m; while(scanf("%d",&m) != EOF) { int i,j; for(i = 0; i < m; i++) { scanf("%s",s); for(j = 0; s[j] != '\0'; j++) if(s[j] >= '0' && s[j] <= '9') printf("%d ",j+1); printf("\n");...
My_opt
2022年4月30日 17:15
c++
P1439
回复 0
|
赞 0
|
浏览 4.9k
#include <iostream> using namespace std; int n; string s; int main() { cin >> n; while (cin >> s) { for (int i = 0; i < s.size(); i ++ ) if (s[i] >= '0' && s[i] <= '9') cout << i + 1 << ' '; cout << endl; } retur...
A1120161820
2020年3月7日 09:46
判断数字位置(c++)
P1439
回复 0
|
赞 0
|
浏览 9.1k
#include<iostream> #include<vector> #include<string> using namespace std; int main() { int m, i; cin >> m; while (m--) { string str; cin >> str; vector<int> vint; for (i = 0; i < str.size(); i++) { if (str[i] >= '0' &&...
题目
判断数字位置
题解数量
3
发布题解
热门题解
1
判断数字位置 题解:C
2
c++
3
判断数字位置(c++)