Berikut ini adalah pertanyaan dari Candrasmurti8606 pada mata pelajaran TI untuk jenjang Sekolah Menengah Atas
Jawaban dan Penjelasan
Berikut ini adalah pilihan jawaban terbaik dari pertanyaan diatas.
Jawaban & Penjelasan:
CODE bisa menggunakan ini :
#include <iostream>
using namespace std;
int main()
{
//DECLARATIONS
int score;
int round;
int total;
double average = 0; // average score of an archer
for (round = 0; round < 4;) {
cout << "Please enter the Archer's Score' ";
cin >> score;
if (score<0, score> 60) {
cout << "\nThe value you entered is out of range, Please enter a number between 0 - 60 \n";
}
total = total + score;
}
cout << "Total Score = " << total << endl;
average = total / round;
cout << "Average Score = " << average << endl;
return 0;
}
atau CODE ini :
#include <iostream>
using namespace std;
int main()
{
//DECLARATIONS
int score;
int round;
int total;
int count;
double average = 0; // average score of an archer
for (round = 0; round < 4; round++) {
total = 0;
for(count = 0; count < 3;)
{
cout << "Please enter the Archer's Score' ";
cin >> score;
if (score<0 || score> 60) {
cout << "\nThe value you entered is out of range, Please enter a number between 0 - 60 \n";
}
else
{
count++;
total = total + score;
}
}
cout << "Total Score = " << total << endl;
average = total / count;
cout << "Average Score = " << average << endl;
}
return 0;
#semoga membantu
Semoga dengan pertanyaan yang sudah terjawab oleh hasanmac dapat membantu memudahkan mengerjakan soal, tugas dan PR sekolah kalian.
Apabila terdapat kesalahan dalam mengerjakan soal, silahkan koreksi jawaban dengan mengirimkan email ke yomemimo.com melalui halaman Contact
Last Update: Sun, 25 Sep 22