標題:
503 區間運算
[打印本頁]
作者:
李知易
時間:
7 天前 17:13
標題:
503 區間運算
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入兩個正整數a、b,請輸出區間[1,a)中,a開根號為正整數且執行下方公式後的所有結果。
備註:平方根的意義
https://www.junyiacademy.org/course-compare/math-juni/math-8/n-m8a_new/n-m8a-c02_y23/n-m8a-c02-1_y23/v/fhINR5v_i7M
公式:
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
兩個正整數
輸出說明
公式計算後的結果
範例輸入
49
3
範例輸出
1
8
27
64
125
216
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡宇庭
時間:
5 天前 14:04
#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
cin>>a>>b;
int t=sqrt(a-1);
for(int i=1;i<=t;i++)
cout<<pow(i,b)<<endl;
return 0;
}
複製代碼
作者:
張淯祺
時間:
5 天前 14:05
#include<bits/stdc++.h>
using namespace std;
int a,b,t;
int main()
{
cin>>a>>b;
t=sqrt(a-1);
for(int i=1;i<=t;i++)
cout<<pow(i,b)<<endl;
return 0;
}
複製代碼
作者:
蔡岑昕
時間:
5 天前 14:31
#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
cin>>a>>b;
t=sqrt(a-1);
for(int i=1;i<=t;i++)
cout<<pow(i,b)<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2