访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容
深深思念一个人的时候,我们不知不觉的地活在世界的中心...
system("pause"); return 0;
#include <stdio.h> #include <stdlib.h> int main() { // 折现值计算 int d,e,f; float r; scanf("%d",&d); scanf("%d",&e); scanf("%f",&r); f=d/(1+r); f=f+e/((1+r)*(1+r)); printf("Present value=%f",f); system("pause"); return 0; }
#include <stdio.h>void main() { // 折现值计算 int d,e,f; float r; scanf("%d",&d); scanf("%d",&e); scanf("%f",&r); f=d/(1+r); f=f+e/((1+r)*(1+r)); printf("Present value=%f",f);}.......
下面是引用likeaflower于2007-02-20 21:05发表的 : 小弟用了Visual C++ 2005 Express之后在程式之中已经可以解决看不到答案的问题了...也并不是加上 system("pause"); return 0;因为我后来测试加上去在VC++编译的时候system也是找不到识别项虽然还是对这些不太懂也闹了点笑话..不过我最后还是能够在VC++程式中看到我的答案了><.......
下面是引用zptdaniel于2007-03-9 16:13发表的 : system("PAUSE");PAUSE要大写喔.......