syntax error before `)' token 是什么错误
#include<stdio.h>#include<stdlib.h>main(){floatcaptial,deposit;inttemp=0,n;printf("Pl...
#include <stdio.h>
#include <stdlib.h>
main()
{
float captial,deposit;
int temp = 0,n;
printf("Please enter captial and years, the format is captial,years\n");
scanf("%f,%f",&captial,&n);
while(temp < n)
{
captial = captial*(1+2.25%);
}
printf("%f",captial);
system("pause");
}
while循环里 出现 11 E:\C_workspace\practise3.3.cpp syntax error before `)' token 错误,请问是什么错误? 展开
#include <stdlib.h>
main()
{
float captial,deposit;
int temp = 0,n;
printf("Please enter captial and years, the format is captial,years\n");
scanf("%f,%f",&captial,&n);
while(temp < n)
{
captial = captial*(1+2.25%);
}
printf("%f",captial);
system("pause");
}
while循环里 出现 11 E:\C_workspace\practise3.3.cpp syntax error before `)' token 错误,请问是什么错误? 展开
3个回答
展开全部
程序里有几处问题,在代码里给你指出来了,如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
float captial,deposit;
int temp = 0,n;
printf("Please enter captial and years, the format is captial,years\n");
scanf("%f,%d",&captial,&n);//n的匹配符是%d
while(temp < n)
{
captial = captial*(1+2.25*0.01);//%号不能直接用
temp++;//自加,以便退出循环
}
printf("%f",captial);
system("pause");
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
表示的是在括号前面有错误,你的错误你想表示的是百分之2.25,但是这样的表示方式不对的,你应该直接用小数的形式表示出来,你换成0.0225试试看看,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询