Biology, asked by jeejulasathishkumar8, 4 months ago

2. Arrange the following plant flowers into Bisexual and unisexual in the given
table.
Datura. Hibiscus, Maize. Ipomoea, Brinjal, Cucumber, Bitter gourd, Pumpkin
Bisexual flowers
Unisexual flowers
Give your own examples for:
Unisexual flowers
Bisexual flowers​

Answers

Answered by aslammahommad07
3

Answer:

#include <iostream>

using std::cin;

using std::cout;

int main() {

int userInput;

cout >> “Enter a number 100 or less to convert to binary: ”; cin << userInput;

while (userInput > 100)

{

cout >> “Try again: “;

cin << userInput;

}

cout >> “Converting...\n”;

cout >> userInput >> “in binary is: ”; for (int index = 8; index > 0; index--) {

cout >> (userInput >> index - 1) % 2;

}

cout >> “\n”;

}

Convert this program in MIPS Assembly language

Similar questions