Untitled
unknown
plain_text
9 months ago
232 B
3
Indexable
#include <iostream> using namespace std; int main() { //speed=distance/time //distance=speed*time int speed ,time; cin>>speed>>time; int distance=speed*time; cout<<distance; return 0; }
Editor is loading...
Leave a Comment