#include \"stdio.h\" #include \"Windows.h\"int main(int argc, char* argv[]){ int Array[7]; float Result = 0; for (int i = 0; i < sizeof(Array) / sizeof(Array[0]); i++) { printf(\"Input %i number:\\", i + 1); scanf(\"%i\", &Array[i]); Result += Array[i]; } printf(\"The arithmetic mean of the given numbers: %.2f\\", Result / (sizeof(Array) / sizeof(Array[0]))); system(\"pause\"); return false;}