c++求助
#include <iostream> using namespace std; int main() { double t, m; int a, b; cin >> t >> a; b = a * 2; m = t / a * 1.000; cout << m << endl << b; return 0; }