Mark11


私信TA

用户名:Mark11

访问量:26448

签 名:

懒惰,傲慢,愤怒

等  级
排  名 362
经  验 5239
参赛次数 0
文章发表 47
年  龄 20
在职情况 学生
学  校 NorthWest University
专  业 S.E

  自我简介:

从头来过的苦逼


#include<stdio.h>
#include<math.h>
int main(){
    int n, i, s=0;
    scanf("%d", &n);
    for(i=1; s<=n; i++){
        s += i * i * i;
    }
    printf("%d\n", i-2);
    return 0;
}


 

0.0分

0 人评分

  评论区

为什么我这个代码这个oj运行超时??
#include <stdio.h>

int main()
{	int n,m,sum=0;
	scanf("%d",&n);

while(sum<=n){
	m++;
	sum=m*m*m+sum;
}
printf("%d",m-1);
	return 0;
}
2019-06-13 23:00:40
  • «
  • 1
  • »