Computer Science, asked by hadu15, 8 months ago

Draw a flowchart to input a number, multiply by 2 and print the answer...... plzz answer it correctly!!!​

Answers

Answered by aryanpr115
0

Answer:

i am using C++

Explanation:

#include<iostream>

using namespace std;

int main(){

long int A;

cin>>A;

long int X= A*2;

cout<<X<<endl;

return 0;

}

Similar questions