- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我卡在了 Ada 中。我应该创建一个具有特定 Flag_Type 的包,可以写入和读取以打印一个简单的标志。我想我已经设法使包广告和包主体 adb 正确,但我在主程序的命令上遇到了困难。
首先是第一个,输出应该是这样的:
Enter the flag name: Italys flag
Enter the flag height: 2
Enter the stripes width: 3
Enter the flags colors: GWR
Italys flag
+---------+
|GGGWWWRRR|
|GGGWWWRRR|
+---------+
现在,我的 ADS 包看起来像这样:
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
package Flagdrawer is
type Flag_Type is private;
procedure Get(Item: out Flag_Type);
procedure Put(Item: in Flag_Type);
private
type Flag_Type is
record
Flag_Name: String(1..20);
L : Integer;
Flag_Height : Integer;
Flag_Width : Integer;
Flag_Colors : String(1..3);
end record;
end Flagdrawer;
我的包体是这样的:
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
with Flagdrawer; use Flagdrawer;
package body Flagdrawer is
procedure Get(Item: out Flag_Type) is
begin
Get_Line(Item.Flag_Name, Item.L);
Get(Item.Flag_Height);
Get(Item.Flag_Width);
Get(Item.Flag_Colors);
end Get;
procedure Put(Item: in Flag_Type) is
Real_Width : Integer;
begin
Real_Width := Item.Flag_Width *3;
Put(Item.Flag_Name(1..Item.L));
New_Line;
Put("+");
for I in 1..Real_Width loop
Put("-");
end loop;
Put_Line("+");
for J in 1..Item.Flag_Height loop
Put("!");
for K in 1..Item.Flag_Width loop
Put(Item.Flag_Colors(1));
end loop;
for L in 1..Item.Flag_Width loop
Put(Item.Flag_Colors(2));
end loop;
for M in 1..Item.Flag_Width loop
Put(Item.Flag_Colors(3));
end loop;
Put_Line("!");
end loop;
Put("+");
for I in 1..Real_Width loop
Put("-");
end loop;
Put_Line("+");
end Put;
end Flagdrawer;
然后我非常缺少的主程序如下所示:
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
with Flagdrawer; use Flagdrawer;
procedure Tenta_Flagdrawah is
F: Flag_Type;
begin
Put_line("Enter the flags name (1): ");
Put_Line("Enter the flags height (2): ");
Put_Line("Enter the stripes' width (3): ");
Put_Line("Enter the RGB for the flag's colors (4): ");
Get(F);
New_Line;
Put(F);
end Tenta_Flagdrawah;
我只习惯于具有一个特定输入的赋值,比如说 Get(F),其中 F 是 Flag_Type,现在它分布在多个变量上,我不知道如何合并它们。
过去我从这里得到了很好的回应,有没有人可以给我一些关于我错在哪里的提示?我知道我的主程序严重缺乏,但我不知道如何编码。
在此先感谢您的帮助!
我找到了一个(某种程度上)有效的解决方案,该解决方案在我直接交给 Simon Wright 的这个主程序中被注释掉了,因为我不太明白你的声明是什么意思。我把它们放在我的 MP 中,我不断得到“项目的实际值必须是一个变量”。我尝试改用 Item.Name,但它声称其前缀无效。你觉得我哪里做错了?
主程序.adb
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
with Flagdrawer; use Flagdrawer;
procedure Tenta_Flagdrawah is
F: Flag_Type;
subtype Color_String is String (1 .. 3);
procedure Get (Item : out Flag_Type;
Name : in String;
Height : in Natural;
Stripe_Width : in Natural;
Colors : in Color_String) is
begin
Put("Enter the flag's name: ");
Get(Name);
Put("Enter the flag's height: ");
Get(Height);
end Get;
begin
-- Put_line("Enter the flags name (1): ");
-- Put_Line("Enter the flags height (2): ");
-- Put_Line("Enter the stripes' width (3): ");
-- Put_Line("Enter the RGB for the flag's colors (4): ");
-- Get(F);
New_Line;
Put(F);
end Tenta_Flagdrawah;
最佳答案
您的很多麻烦是 Get
过程;它实现了各个字段的所有文本输入,而不引用主程序正在做什么。
一般来说,在 abstract data type 中执行 I/O 不是好的做法。像 Flag
;在调用程序中更好地完成它。 (我可以看出 Put
会很尴尬)。
您可以在主程序中读取参数并将它们提供给Get
,
subtype Color_String is String (1 .. 3);
procedure Get (Item : out Flag_Type;
Name : in String;
Height : in Natural;
Stripe_Width : in Natural;
Colors : in Color_String);
这意味着要制定包规范(抱歉,我忍不住要整理一下)
package Flagdrawer is
type Flag_Type is private;
subtype Color_String is String (1 .. 3);
procedure Get (Item : out Flag_Type;
Name : in String;
Height : in Positive;
Stripe_Width : in Positive;
Colors : in Color_String);
procedure Put(Item: in Flag_Type);
private
type Flag_Type is
record
Name : String (1 .. 20);
Name_Len : Natural;
Height : Positive;
Stripe_Width : Positive;
Colors : Color_String;
end record;
end Flagdrawer;
并在包体中实现Get
procedure Get (Item : out Flag_Type;
Name : in String;
Height : in Positive;
Stripe_Width : in Positive;
Colors : in Color_String) is
begin
-- Don’t exceed the 20-character limit on the stored Name
Item.Name_Len := Natural'Min (Item.Name'Length, Name'Length);
Item.Name (1 .. Item.Name_Len) := Name (Name'First .. Item.Name_Len);
Item.Height := Height;
Item.Stripe_Width := Stripe_Width;
Item.Colors := Colors;
end Get;
主程序是
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Flagdrawer; use Flagdrawer;
procedure Tenta_Flagdrawah is
F: Flag_Type;
begin
Put("Enter the flags name: ");
-- Need a declare block so that Name
-- is as long as the user input
declare
Name : constant String := Get_Line;
Height : Positive;
Stripe_Width : Positive;
Colors : Flagdrawer.Color_String;
begin
Put("Enter the flag's height: ");
Get (Height);
Put("Enter the stripes' width: ");
Get (Stripe_Width);
Put("Enter the RGB for the flag's colors: ");
Get (Colors);
Get(F,
Name => Name,
Height => Height,
Stripe_Width => Stripe_Width,
Colors => Colors);
end;
New_Line;
Put(F);
end Tenta_Flagdrawah;
关于包体和主程序。简单赋值 (Ada),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61974481/
你能解释一下这个作业是如何完成的吗, var fe, f = document.forms[0], h; 哪个等于哪个。 最佳答案 以上等同于 var fe; var f = document.for
据我测试,这两种方法都有效,但我不知道哪一种最好,也不知道它们之间的区别,这就是我想知道的。 以下是两种方法: window.location = 'http://www.google.com'; w
我正在处理用字符串填充的 numpy 数组。我的目标是分配给第一个数组 a 的切片,值包含在较小尺寸的第二个数组 b 中。 我想到的实现如下: import numpy as np a = np.em
在我使用过的其他语言(如 Erlang 和 Python)中,如果我正在拆分字符串并且不关心其中一个字段,我可以使用下划线占位符。我在 Perl 中试过这个: (_,$id) = split('
我认为这似乎很简单,但我对调用、应用、绑定(bind)感到困惑。等等 我有一个事件监听器 red.addEventListener("click", function() { j = 0;
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 使用有什么区别: iFile =
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 使用有什么区别: iFile =
几周前我们开始写一篇关于 Haskell 的论文,刚刚接到我们的第一个任务。我知道 SO 不喜欢家庭作业问题,所以我不会问怎么做。相反,如果有人能将我推向正确的方向,我将不胜感激。鉴于它可能不是一个特
我正在尝试为我的函数的变量根分配一个值,但似乎不起作用。我不明白这个问题。 hw7.c:155:7:警告:赋值使指针来自整数而不进行强制转换[默认启用] root = 负载(&fp, 大小); 此代码
我昨天花了大约 5 个小时来完成这个工作,并使用这个网站的帮助让代码可以工作,但我认为我这样做的方式是一种作弊方式,我使用了 scanf 命令。无论如何,我想以正确的方式解决这个问题。多谢你们!哦,代
我需要一些帮助来解决问题。 我有这个文本文件: 我将文本内容输入到字符串二维数组中,并将其转换为整数二维数组。当我转换为 int 数组时,nan 被替换为零。现在,我继续查找二维数组中每行的最大值和最
假设我有一个只能移动的类型。我们停止现有的默认提供的构造函数,但 Rvalue 引用引入了一种新的“ flavor ”,我们可以将其用于签名的移动版本: class CantCopyMe { priv
假设我有两个简单的对象,我想创建第三个对象来连接它们的属性。这非常有效: (()=>{ const a1 = {a: 2, b: 3} const b1 = {a: 100, c: 5}
我想知道我是否可以稍后在这样的代码中为 VAR 赋值 var myView: UIView func createView() { myView = UIView() { let _view =
我遇到了一些 Javascript/HTML/CSS 代码的问题。我对创建网站还很陌生,所以请多多包涵。 我最终想做的是从 javascript 中提取一个动态值并使用它对一些 div(在容器中)进行
#include class Box{ public: int x; Box(){ x=0; std::cout No move construction thanks to RV
我发现在javascript中&=运算符是按位赋值: var test=true; test&=true; //here test is an int variable javascript中是否存在
请帮助完成赋值重载函数的执行。 这是指令: 赋值运算符 (=),它将源字符串复制到目标字符串中。请注意,目标的大小需要调整为与源相同。 加法 (+) 和赋值 (=) 运算符都需要能够进行级联运算。这意
我有一个名为 SortedArrayList 的自定义结构它根据比较器对其元素进行排序,我想防止使用 operator[] 进行分配. 示例: 数组列表.h template class Array
我是 python 的新手,我看到了这种为列表赋值的形式 color= ['red' if v == 0 else 'green' for v in y] 但是如果我尝试用 3 个数字来做,例如 co
我是一名优秀的程序员,十分优秀!