Draw a flowchart to input a number, multiply by 2 and print the answer...... plzz answer it correctly!!!
Answers
Answered by
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