1/4
Chat with our AI personalities
sum = 0 for(n = 0; n <= 10; n += 2) sum += n;
1/2+1/2=1 1/3+1/3=2/3 1-2/3=1/3 Answer: 1/3
1/4 is half-way between 0 and 1/2. There are infinitely many other fractions that are also between 0 and 1/2 such as 1/3,1/5, 2/5, 1/6,1/7,2/7,3/7 to name a few.
0.5*0.5 - 0.5+0.5 = 0.25 - 1 = -0.75 = -3/4
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity fabehv is Port ( ain : in STD_LOGIC; bin : in STD_LOGIC; cin : in STD_LOGIC; sum : out STD_LOGIC; cout : out STD_LOGIC); end fabehv; architecture Behavioral of fabehv is signal s:std_logic_vector(2 downto 0); begin process(ain,bin,cin,s) begin s(2)<= ain; s(1)<= bin; s(0)<= cin; case s is when "000" => sum<='0'; cout<='0'; when "001" => sum<='1'; cout<='0'; when "010" => sum<='1'; cout<='0'; when "011" => sum<='0'; cout<='1'; when "100" => sum<='1'; cout<='0'; when "101" => sum<='0'; cout<='1'; when "110" => sum<='0'; cout<='1'; when "111" => sum<='1'; cout<='1'; when others => null; end case; end process; end Behavioral;