Answer:
They are the same as the clone tool.
Explanation:
Answer:
I'm thinking d
Explanation:
i dont think we are advanced enough to do a,b, or c.
so imma say d
Answer:
The program is written in C++ language and given below in explanation section. All bold faced words are C++ keywords and symbols. Nested if-else decision branch is used to determine smallest number of all three integers. First of all you have input three integers then the program prints smallest integer of all
Explanation:
#include <iostream>
using namespace std;
int main() {
int num1,num2,num3;
cout<<"enter first integers"<<endl;
cin>>num1;
cout<<"enter second integers"<<endl;
cin>>num2;
cout<<"enter the third integers"<<endl;
cin>>num3;
if(num1<num2){
if(num1<num3){
cout<<"Smallest integer is "<<num1<<endl;
} else{
cout<<"Smallest integer is "<<num3<<endl;
}
}else {
if(num2<num3){
cout<<"Smallest integer is "<<num2<<endl;
} else{
cout<<"Smallest integer is "<<num3<<endl;
}
}
return 0;
}
Answer:
<!--Jose,10/09/2019. This code validates to HTML5-->
Explanation:
HTML(Hyper Text Markup Language) is used to write content of the web page.It uses different HTML elements to do that.
HTML comments are to define,describe or to provide extra information the elements in the HTML code .Anything written inside the HTML comment is not shown on the web page.It is only present in the code.
HTML comment is written as <!-- comment -->.Anything written inside <!-- --> is considered as comment in HTML.
So the line written above in the answer can be inserted so that other developers can know that this page was created by Jose and it is of HTML5.