发布网友 发布时间:2022-04-21 06:59
共2个回答
热心网友 时间:2023-11-06 21:24
改好程序如下:
#include
#include
using
namespace
std;
int
main()
{
string
word;
while
(
cin
>>
word
)
{
if
(word=="g")
break;//错误主要在这行,if后面条件要放括号里,
//g是一个字符串的话要用引号引起来,break语句后面还少了个分号
else
cout<<
"word
read
is:
"
<<
word
<<
'\n';}
cout
<<
"ok:
no
more
words
to
read:
bye!\n";
return
0;
}
热心网友 时间:2023-11-06 21:25
改好程序如下:
#include
#include
using
namespace
std;
int
main()
{
string
word;
while
(
cin
>>
word
)
{
if
(word=="g")
break;//错误主要在这行,if后面条件要放括号里,
//g是一个字符串的话要用引号引起来,break语句后面还少了个分号