Untitled
unknown
c_cpp
2 years ago
339 B
3
Indexable
//ФАЙЛ main.cpp #include <iostream> #include "Target.h" #include "Shooter.h" #include "Shooting.h" using namespace std; int main() { Target target; target.SetTargetProbabilities(); Shooter shooter; shooter.SetShooterPrecisions(); Shooting shooting; shooting.Sum(); shooting.DisplaySum(); return 0; }
Editor is loading...