Untitled
unknown
c_cpp
3 years ago
339 B
7
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...