在C中使用数组类型为表达式赋值错误

时间:2015-09-05 18:51:58

标签: arrays function types variable-assignment

public class VideoViewController {
    @FXML
    private AnchorPane idPlayListAnchorPane;
    @FXML
    private PlayListViewController idPlayListAnchorPaneController ;

    // ...
}

编译完成后,我将 [Error]赋值给数组类型的表达式。错误行是 diff = abs(实验[2] -100)* 100/100;

您能否告诉我打印实验值并获取输出的最短路径(使用for循环)?如果您无法解决此问题,请为我重新编写代码。我在这个家庭作业问题上加了link

1 个答案:

答案 0 :(得分:1)

!!! int diff [8] !!!

将其更改为int diff;以传递编辑。

P.S。

您知道*100 /100*1相同,对吗?

关于循环,请看下面的数组和循环教程(自己做这些事情):

http://www.codingunit.com/cplusplus-tutorial-arrays-arrays-and-loops

http://www.idleloop.com/tutorials/introC/introC-10.php