- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我在类里面编写一个类似于二十一点的程序,但出现以下错误:
ThirtyNine.c:27:54: error: expected expression before 'int'
(playerdie1,playerdie2,playerdie3) = int initial3roll();
^
ThirtyNine.c:28:60: error: expected expression before 'int'
(opponentdie1,opponentdie2,opponentdie3) = int initial3roll();
^
ThirtyNine.c:29:60: error: expected ')' before string constant
printf("You roll 3 dice: ", playerdie1 " ", playerdie2, " ", playerdie3);
^
ThirtyNine.c:29:60: warning: too many arguments for format [-Wformat-extra-args]
ThirtyNine.c:30:69: error: expected ')' before string constant
printf("Opponent rolls 3 dice: ", (opponentdie1 " ", opponentdie2, " ", opponentdie3);
^
ThirtyNine.c:30:106: error: expected ')' before ';' token
printf("Opponent rolls 3 dice: ", (opponentdie1 " ", opponentdie2, " ", opponentdie3);
^
ThirtyNine.c:92:37: warning: too many arguments for format [-Wformat-extra-args]
}
^
ThirtyNine.c:92:37: error: expected ';' before '}' token
这是我到目前为止的代码,任何帮助将不胜感激!
int initial3roll();
int main(){
int playerdie1,playerdie2,playerdie3;
int opponentdie1,opponentdie2,opponentdie3;
int playertotal;
int opponenttotal;
int select1;
int diceroll;
printf("Welcome to the game of 39!\n Press 1 to start or 0 to exit:");
scanf( "%d", &select1 );
if ( select1 == 0) {
exit(0);
}
else {
int initial3roll();{
int die1 = 1 + (rand() % 12);
int die2 = 1 + (rand() % 12);
int die3 = 1 + (rand() % 12);
return (die1,die2,die3);
}
while (select1 == 1){
(playerdie1,playerdie2,playerdie3) = int initial3roll();
(opponentdie1,opponentdie2,opponentdie3) = int initial3roll();
printf("You roll 3 dice: ", playerdie1 " ", playerdie2, " ", playerdie3);
printf("Opponent rolls 3 dice: ", (opponentdie1 " ", opponentdie2, " ", opponentdie3);
playertotal = playerdie1 + playerdie2 + playerdie3;
opponenttotal = opponentdie1 + opponentdie2 + opponentdie3;
printf("Your total: ", playertotal);
printf("Opponent total: ", opponenttotal);
printf("How many dice do you want to roll again: ");
scanf("&d", &diceroll );
switch(diceroll){
case '1' int die1 = 1 + (rand() % 12);
printf("You roll 1 die: ", die1);
playertotal += die1;
die1 = 1 + (rand() % 12);
printf("Opponent rolls 1 die: ", die1);
opponenttotal += die1;
printf("Your total is: ", playertotal);
printf("Opponent total is: ", opponenttotal);
break;
case '2'
int die1 = 1 + (rand() % 12);
int die2 = 1 + (rand() % 12);
printf("You roll 2 die: ", die1, die2);
playertotal += die1 + die2;
die1 = 1 + (rand() % 12);
die2 = 1 + (rand() % 12);
printf("Opponent rolls 2 die: " die1, die2);
opponenttotal += die1 + die2;
printf("Your total is: ", playertotal);
printf("Opponent total is: ", opponenttotal);
break;
case '3'
int die1 = 1 + (rand() % 12);
int die2 = 1 + (rand() % 12);
int die3 = 1 + (rand() % 12);
printf("You roll 3 die: ", die1, die2,die3);
playertotal += die1 + die2 + die3;
die1 = 1 + (rand() % 12);
die2 = 1 + (rand() % 12);
die3 = 1 + (rand() % 12);
printf("Opponent rolls 3 die: " die1, die2, die3);
opponenttotal += die1 + die2 + die3;
printf("Your total is: ", playertotal);
printf("Opponent total is: ", opponenttotal);
break;
default:
printf("Your total is: ", playertotal);
printf("Opponent total is: ", opponenttotal);
break;
}
if (playertotal > opponenttotal);
printf("You Win!");
if (opponenttotal > playertotal);
printf("You Lose");
if (opponenttotal = playertotal);
printf("You Tie");
printf("Press 1 to play again or 0 to exit:");
scanf( "%d", &select1 );
if (select1 == 0){
printf("Thanks for playing!");
exit(0);
}
}
}
return(0);
}
最佳答案
一些突出的事情:
1) 了解如何使用 printf
-- 如果您是 C 语言新手,情况会非常不同。您可以将单个字符串作为第一个参数,将参数列表作为其余参数,然后使用 % 后跟类型标识符来表示字符串中的参数。例如: %d
表示 int,因此:
printf("You roll 3 dice: %d %d %d", playerdie1, playerdie2, playerdie3);
2) C没有嵌套函数;您需要将 intinitial3roll()
的定义单独移到 main
之外。它应该类似于您对 main
的定义。
3) C 没有元组,所以这不起作用:
(playerdie1,playerdie2,playerdie3) = int initial3roll();
除非您想使用指针或传入引用参数,否则您必须从 initial3roll
返回单个 int
。您可能需要考虑只运行此函数 3 次,每次滚动一次,以简化操作。或者干脆将其完全删除并单独使用 rand
。
4) 每个case
都需要在数字后加一个冒号,并且可能应该独占一行(为了清楚起见)。 default
大小写是正确的。
5)让事情变得更容易,并正确缩进你的代码。您的编辑可能可以为您做这件事;到处搜索如何。这样很难跟得上。
关于c - C 新手,类似二十一点的程序的错误消息问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36439789/
我是 Xcode 4.4 和 AppleScriptObjC 世界的新手。我正在尝试扩展和试验 Sanderson 和 Rosenthal 所著的“学习 AppleScript”一书中关于 Apple
我完全迷失在 shell 编程中,主要是因为我使用的每个站点都提供不同的工具来进行模式匹配。所以我的问题是使用什么工具在管道流中进行简单的模式匹配。 上下文:我有named.conf 文件,我需要一个
我对 C 很陌生,我一直在尝试用这种数据结构制作一个程序: struct node { char command[100]; char prereq[100][80]; cha
该程序检查用户输入的数字是否为素数。 我的问题在if语句中。由于某些原因,Boolean永远不会切换。如果数字为质数,则只会给出两个结果。 我想念什么? import java.util.Scanne
我只是在学习 Haskell。我认为这会产生一个阶乘函数...... (在 ghci 内) Prelude> let ft 0 = 1 Prelude> let ft n = n * ft (n -
这个问题已经有答案了: Using bitwise OR 0 to floor a number (7 个回答) 已关闭 6 年前。 我试图在 JavaScript 中使用二分搜索来查找数组元素,并且
使用 Signal R,如果尝试发送对象,传递模型的语法是什么? private async void FormLoaded(object sender, RoutedEventArgs e) {
我需要使用 Javascript 生成一个半金字塔数字系列,其中包含输入的起始数字和 html 页面中的行数,并在 html 页面中显示结果。我已经完成了 Java 脚本编写之类的工作。我不明白的是它
为什么函数名重复 示例: lucky :: (Integral a) => a -> String lucky 7 = "LUCKY NUMBER SEVEN!" lucky x = "Sorry
我花了2天的时间在GGTS中使用grails进行Web开发。我正在跟着一本书。本书使用命令行。到目前为止,这很棒,但是现在这本书正在使用webtest。我已经在命令行上安装了webtest,但是如何在
我正在学习 Clojure,到目前为止我无法理解这个小难题,我确信这是非常基本的。 我有这个文件: (ns cloapp.core (:gen-class)) (defn -main "I d
我在获取图像以显示在我的 J Frame 中时遇到问题。我确信我将文件放在正确的位置并且输入了正确的名称。这是代码 import java.awt.Color; import java.awt.Gra
我正在尝试为我正在做的应用程序创建一个登录窗口。我整天都在寻找一个例子,但我似乎找不到任何有帮助的东西。我的基本结构如下: // App.scala object App extends Simple
坦率地说,我是 Java 新手。我正在开发一个项目,我想找到一种基于数字序列创建多项式函数的方法。 无论如何,我的问题是我创建了一个存储序列的数组。我现在想找出元素之间的差异。例如。我想找到这个计算a
现在添加了 xml 和 logcat,现在自定义 View 代码,不幸的是我远离开发计算机所以我无法检查你的建议,@jems,我的自定义 View 的构造函数可能错误?@Falmarri,我认为构建目
我在这里缺少什么?当我单击“h2 a”链接时,.content ol 应该切换。我不明白为什么它不起作用:( $(document).ready(function(){ $(".content ol
我是 Java 新手,我到处寻找,但我没有得到一个简单的概念。 我将两个变量声明为 int。我希望这两个变量对于所有方法都是全局的。在我的第一个方法中,我想从用户输入中获取第一个变量的值。然后我希望第
我正在抓取 IMDB 页面的数据,但当尝试将其写入 CSV 文件时,我只从结果中获取最后一行。 代码下方: from urllib.request import urlopen as uReq fro
自从我学习 C 语言以来,我决定制作一个简单的程序,用于加、减和计算两个变量的乘积。根据用户的输入是1,2还是3来选择加/减/折叠。 #include int main (void) { in
int main(void) { string n = GetString(); if(n!=NULL){ for(int i=0, j=strlen(n); i
我是一名优秀的程序员,十分优秀!