摘要:
#include void main() { for(;;) { float bj,lx=0,ll,d; printf("输入本金:"); scanf("%f",&bj); printf("输入年利率:"); scanf("%f",&ll); printf("输入借贷天数:"); scanf("%f",&d); if(ll==-1) break; else { lx=bj*ll*d/365; p... 阅读全文
摘要:
#include void main() { for(;;) { float bj,lx=0,ll,d; printf("输入本金:"); scanf("%f",&bj); printf("输入年利率:"); scanf("%f",&ll); printf("输入借贷天数:"); scanf("%f",&d); if(ll==-1) break; else { lx=bj*ll*d/365; ... 阅读全文
摘要:
#include "stdafx.h" int main() { int temp=5; int temp2=1; int temp3; int temp4=0; for(int i=1;i<=5;i++) { temp3 = temp2; temp2 = temp2*(i+1); printf("%d*%d=%d\n",temp3,i+1,temp2); temp4+=temp2; } p... 阅读全文
摘要:
#include #include main() { int i, j, b, a[10]; printf("随机猜想数为:\n"); for(i = 0; i a[j + 1]) { b = a[j]; a[j] = a[j + 1]; a[j + 1] = b; } } } for(i = 0; i #define MAX 10000000 int ans[MAX + ... 阅读全文