請輸入第一式:2
請輸入第二式:10
從 M 到 N 中 3 的倍數 共有_3_ 個及總和為_18_
用visual c++ 解出有誰會
能否將過程算是寫出來
謝謝
2006-11-18 12:25:54 · 3 個解答 · 發問者 小柯 1 in 電腦與網際網路 ➔ 程式設計
//Power by Microsoft Visual Studio 2005//可以使用 Dev-C++ 編譯此程式#include
2006-11-18 13:06:24
·
answer #1
·
answered by Big_John-tw 7
·
0⤊
0⤋
int i=0,m,n,num=0,total=0;cin>>m;cin>>n;for(i=m;i<=n;i++){if(i%3==0) {num++; total+=i;}}cout<
2006-11-18 14:24:14 · answer #2 · answered by 台明 5 · 0⤊ 0⤋
在 VC++ 中用 C++ 語法寫的簡單程式:
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
long i,m,n,sum=0,count=0;
cout<<"請輸入第一式 : ";
cin>>m;
cout<<"請輸入第二式 : ";
cin>>n;
for(i=m;i<=n;i++)
{
if(i%3==0)
{
count++;
sum+=i;
}
}
cout<<"共有 "<
system("PAUSE");
return 0;
}
2006-11-18 13:27:47 · answer #3 · answered by ? 7 · 0⤊ 0⤋