问题 1502: 蓝桥杯算法提高VIP-利息计算 摘要:import java.util.Scanner;public class Prog1502 { public static void main(String[] args) { Scanner s…… 文章列表 2018年05月29日 0 点赞 0 评论 706 浏览 评分:0.0
为了什么???? 摘要:有的人是为了程序员的高薪有的人是想要一份体面稳定的工作,别出差有的人是过来打酱油的早抱定了过两年就另找出路的心有的人想了解这个世界,试试看自己合不合适有的人就喜欢计算机的世界,如鱼得水有的人觉得这个行…… 文章列表 2018年05月29日 3 点赞 0 评论 749 浏览 评分:0.0
在训练场提交的时候为什么显示 格式错误 摘要:#include<stdio.h> //头文件int main() //主函数{ printf("**************************\n"); …… 文章列表 2018年05月29日 0 点赞 2 评论 106 浏览 评分:0.0
为什么只输出a的数???求教!!! 摘要:#include<stdio.h>int main(){ int a,b,t; scanf("%d,%d",&a,&b); if(a>b) { …… 文章列表 2018年05月30日 0 点赞 3 评论 155 浏览 评分:0.0
谁知道为什么这个不行呢? 摘要:判断这个点是否在单位圆上,使用小数点后三位精度进行判断。#include <stdio.h>#include "math.h"int main(){float a,b,k;scanf("%f%f",&…… 文章列表 2018年06月01日 0 点赞 0 评论 356 浏览 评分:0.0
C语言中的数据类型问题 摘要:在c程序中出现类似以下代码,运行结果错误,不太确定为什么具体代码内容:long long a;int b,c,d,e,result;for(int i = 0; i < 4; i++){ …… 文章列表 2018年06月07日 0 点赞 1 评论 191 浏览 评分:0.0
大佬帮我看看这个代码哪有问题, 摘要:#include<stdio.h>int main(){ int N,a[1000],b[1000],i,j,temp,count=0,sum=0; while(~scanf("%d",&N)) { …… 文章列表 2018年06月15日 0 点赞 0 评论 396 浏览 评分:0.0
1000的个人见解 摘要://主要注意两个问题1、多组输入2、a+b的范围(pow(2,10)即为2的10次方)#include<stdio.h>#include<math.h>int main(){ int a,b,sum;…… 文章列表 2018年06月15日 0 点赞 0 评论 462 浏览 评分:0.0
巧分甜饼干(C语言代码) 摘要:#### 原题链接:[题目464 - ACM在线评测系统](http://nyoj.top/problem/464 "nyoj在线评测") #### 原题内容: **描述:**奥尔加前去拜访双胞胎…… 文章列表 2018年06月20日 1 点赞 0 评论 939 浏览 评分:0.0
求“完数”超时 摘要:原题链接:问题 1017解题思路:判断一个N以内的数是否为“完数”并不复杂,但是要显示“完数”的所有因子,就需要在判断过程中记录,以下是用链表记录因子的过程:#include<stdio.h> #i…… 文章列表 2018年06月21日 4 点赞 0 评论 1882 浏览 评分:0.0