博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ 1017
阅读量:5864 次
发布时间:2019-06-19

本文共 640 字,大约阅读时间需要 2 分钟。

#include<stdio.h>

int main()
{
int n,m,k,z,i,j,x,ans;
scanf("%d",&k);
for (i=1;i<=k;i++)
{
if (i>1) printf("\n");
x=1;//大的输出块间有空行
while (scanf("%d%d",&n,&m))
{
if (n==0&&m==0) break;
printf("Case %d: ",x);
x++;
ans=0;
for (j=1;j<n-1;j++)
for (z=j+1;z<n;z++)
{
if ((j*j+z*z+m)%(j*z)==0) ans++;
}
printf("%d\n",ans);
}
}
}

 

 

 

 

 

 

 

每一个输出模块后有空行,you should output the sum of a and b, and followed by a blank line.

while(scanf("%d %d",&a, &b) != EOF) printf("%d\n\n",a+b);
输出结果之间有空行 you must note that there is a blank line between outputs.
if(T+1)
printf("%d\n\n",sum);
else
printf("%d\n",sum);
if(i<icase)
printf("%d\n\n",sum);
else
printf("%d\n",sum);

 

转载地址:http://iiynx.baihongyu.com/

你可能感兴趣的文章
zabbix数据库备份
查看>>
Linux下用户组和权限管理
查看>>
Jenkins+Maven+Git搭建持续集成和自动化部署的配置手记(1)
查看>>
centos6修改主机名
查看>>
【资料整理】获取tcp状态
查看>>
思科路由器ipsec lan-to-lan综合案例详解
查看>>
DNS和活动目录的关系
查看>>
MySQL数据常用命令
查看>>
linux命令:netstat & route nbsp; ifconfig route
查看>>
Docker入门(二)
查看>>
Puppet核心配置文件详解
查看>>
centos下搭建docker私有仓库
查看>>
jQuery EasyUI 动态表头
查看>>
中国在人工智能启动资金方面超过美国 重点是面部识别和芯片
查看>>
(function($) {…})(jQuery);
查看>>
redis 4.0.2主从
查看>>
asmlib
查看>>
nginx访问web界面验证
查看>>
Python 中的字典操作
查看>>
快速修改MySQL某张表的表结构
查看>>