所以我刚开始在大学学习处理,但遗憾的是错过了很少的讲座,所以随着手头的教科书,我试图学习这个我的自我,有人可以告诉我,如果我是对或错这个?你会拯救我的生命。有点......谢谢:D
这就是问题:
编写一个声明并初始化以下变量的程序 与他们的价值观。在程序中添加注释以分隔 不同的小节。一世。 noOfstudents = 50 ii。 examMark = -50
III。 priceOfShoes = 59.99 iv。收入= 10,750.99 v。 greetingMessage ='你好'vi。 alphabet ='A'vii lossOfIncome = -20.30
viii sum = 0.0000000000076
这是我为问题输入的代码;
void setup() {
int noOfStudents;
noOfStudents = 50; //Number of Students
float examMark;
examMark = -50; // Exam Mark
float shoePrice;
shoePrice = 59.99; // The price of the shoes
double income;
income = 10750.99; // The income
print ("hello world"); //displays hello world
char message;
message = 'A'; //displays the character A
float lossOfIncome = -20.30;
double lossOfIncome2 = 0.0000000000076; //The loss of income
}
答案 0 :(得分:0)
你可以在一行上声明和初始化你的变量,即int noOfStudents = 50;
。此外,您使用的是print()
方法。您更有可能想要使用String
变量类型。
您可能还想看看Ch。 Daniel Shiffman的4,学习处理书,或者至少是ch的例子。 4在线。