关于 sscanf 的问题
代码如下, 死循环了, 想知道用 sscanf 需要注意的一些事, 每次都是类型不同报错, 很烦, 求助#include <bits/stdc++.h>
using namespace std;
string t;
int a, b, c, d, e;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
getline(cin, t);
while(sscanf(t.c_str(), "%d.%d.%d.%d:%d;", &a, &b, &c, &d, &e) == 5){
cout << a << b << c << d << e << endl;
}
return 0;
} #include <bits/stdc++.h>
using namespace std;
string t;
int a, b, c, d, e;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0); // 你能告诉我这一行代码在做什么吗?
// 我表示看不懂
getline(cin, t);
// 你没有改变变量t的内容,每一次用的都是一样的
while(sscanf(t.c_str(), "%d.%d.%d.%d:%d;", &a, &b, &c, &d, &e) == 5){
cout << a << b << c << d << e << endl;
t = ""; // 退出while循环
}
return 0;
}
人造人 发表于 2022-9-24 14:42
那个语句就是把 cin cout 速度提上来, 然后 scanf printf 就不能用了
那如果我有个字符串 "1.2.3.4:5;1.2.3.4:5;1.2.3.4:5;"
我想让他一直读下去 , 该怎么做呢 (比如这里面就是三个这个) 柿子饼同学 发表于 2022-9-24 15:11
那个语句就是把 cin cout 速度提上来, 然后 scanf printf 就不能用了
那如果我有个字符串 "1.2.3.4:5; ...
那个语句就是把 cin cout 速度提上来
怎么个提法?原理?参考文档?
#include <bits/stdc++.h>
using namespace std;
string t;
int a, b, c, d, e;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
getline(cin, t);
int offset = 0, n;
while(sscanf(t.c_str() + offset, "%d.%d.%d.%d:%d;%n", &a, &b, &c, &d, &e, &n) == 5){
cout << a << b << c << d << e << endl;
offset += n;
}
return 0;
}
人造人 发表于 2022-9-24 15:26
那个语句就是把 cin cout 速度提上来
怎么个提法?原理?参考文档?
https://oiwiki.org/contest/io/ 人造人 发表于 2022-9-24 15:26
那个语句就是把 cin cout 速度提上来
怎么个提法?原理?参考文档?
所以 c_str 就会把字符串变成字符数组 ?
柿子饼同学 发表于 2022-9-24 16:59
所以 c_str 就会把字符串变成字符数组 ?
可以这么理解 柿子饼同学 发表于 2022-9-24 16:57
https://oiwiki.org/contest/io/
这个链接说的是 cin.tie(0);
并没有说 cout.tie(0);
你代码中的 cout.tie(0); 是什么意思?
很久之前就和你说过这个问题了,过了这么长时间了,你依然还是这么用
回复你的,你就不看,再一次伤心,^_^
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=217357&pid=5957044
怕你不看,那就再发一次这个
这两个其实是同一个帖子,只不过这个在下面,没有紧挨着上面那个
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=217357&pid=5957056
不看英文的话,那就用翻译软件帮你翻译一下吧
cin 与标准输出流 cout 相关联(参见 ios::tie),这表明在对 cin 执行每个 i/o 操作之前刷新 cout 的缓冲区(参见 ostream::flush)。
默认情况下,cin 与标准输入同步(参见 ios_base::sync_with_stdio)。
cout 不绑定到任何其他输出流(请参阅 ios::tie)。
默认情况下,cout 与 stdout 同步(参见 ios_base::sync_with_stdio)。 cin.tie(nullptr);
//cout.tie(nullptr); // 上面一行把cout从cin中解除绑定,那这一行把谁从谁中解除绑定?
// 把cout从cout中解除绑定?
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=217357&pid=5957044 人造人 发表于 2022-9-24 19:33
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=217357&pid=5957044
好吧 , 好吧
以后不写 cout.tie(0) 了 qwq
页:
[1]