如何在句子中添加字符。
例如我有一个玩家1,并希望将玩家1添加到句子的开头“请输入您想要洗牌的次数。
我已经习惯了java,你可以在其中添加+来连接变量和字符串
到目前为止我有这个,但它不喜欢我输入的任何内容:
printf(&player1 + " please enter how many times you would like to shuffle the deck: ");
int numShuf;
scanf("%i", &numShuf);
非常感谢任何帮助
答案 0 :(得分:2)
试试这个:
printf("%s please enter how many times you would like to shuffle the deck: ", player1);
printf
表示打印格式化,因此您可以格式化要打印的内容并将变量作为参数添加。