我目前正在自学 C++,我目前被困在这个问题上。
我想创建一个保存 Text(string) 和 Number(double) 循环的程序。
#include <iostream>
#include <iomanip>
#include <cstring>
using namespace std;
int main() {
string words[999],addwords;
double numbers[999],addnumbers;
int totalwords=0,totalnumbers=0;
head:
cout << "Word: "; getline(cin,addwords);
words[totalwords] = addwords;
totalwords+=1;
cout << "Numbers: "; cin >> addnumbers;
numbers[totalnumbers] = addnumbers;
totalnumbers+=1;
goto head;
}
EOF
输出必须是:
单词:一些字母
数字:010102
单词:一些字母
数字:010102
{loop}
此代码的输出:
单词:一些字母
数字:010102
单词:数字:202010
谢谢你的帮助。