برنامج C++ لايجاد الارقام التي تقبل القسمة على 3 وايجاد مجموعها من ضمن قائمة 90 رقم يتم ادخالها في وقت التنفيذ
ملاحظة: في البرنامج ادناه، كل ما يبدأ بـ // هو تعليق يمكن حذفه
كود:
// Write a C++ program that let the user input 90 integer numbers and print the number if it accept the division on (3) without reminder and print the sum of those numbers.
#include <iostream>
using namespace std; // so we dont need to write std::cin or std::cout .. etc
main(){
int i, x, sum;
for(i=1;i<=90;i++){ // check 90 numbers
cin >> x; // input x from the list
if(x % 3 ==0){ // % is the modulus operator that return zero if no reminder.
cout << x << endl; // print the number if the condition met. and write end of line after it.
sum=sum+x; // summing the number
}
}
cout << "The sum is " << sum; // print the sum
}
اللي ما فتح عنده (الكود) هذه محاولة لاظهاره:// Write a C++ program that let the user input 90 integer numbers and print the number if it accept the division on (3) without reminder and print the sum of those numbers.
#include <iostream>
using namespace std; // so we dont need to write std::cin or std::cout .. etc
main(){
int i, x, sum;
for(i=1;i<=90;i++){ // check 90 numbers
cin >> x; // input x from the list
if(x % 3 ==0){ // % is the modulus operator that return zero if no reminder.
cout << x << endl; // print the number if the condition met. and write end of line after it.
sum=sum+x; // summing the number
}
}
cout << "The sum is " << sum; // print the sum
}