程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ZOJ 2969 && BNU16488 Easy Task

ZOJ 2969 && BNU16488 Easy Task

編輯:C++入門知識

ZOJ 2969 && BNU16488 Easy Task


鏈接:click here

題意: 給出n,代表多項式有n+1項,要求多項式求導後每一項的系數,常數項就不用輸出。

思路:(吐槽)題意一直沒讀懂~~ORZ~~英語閱讀和理解能力要抓狂啊~~~,最後發現簡單的模擬

代碼:

#include 
#include 
#include 
#include 
#include 
using namespace std;
const int Inf=0x3f3f3f;
const int maxn=1000;
const double eps=1e-6;
const double pi=acos(-1.0);
int n,m,i,j;
int cost[maxn][maxn];
double  vis[maxn];
int aa[maxn];
int main()
{
    int n,m,i,j;
    cin>>n;
    while(n--)
    {
        cin>>m;
        for(i=0; i>aa[i];
            //cout<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved