c语言编程-C语言 oj 平台 runtime error 求解

问题描述

C语言 oj 平台 runtime error 求解
题:原文网址:http://vjudge.net/problem/viewProblem.action?id=19398
输入:先输入一个数N,后每组2个(代表xy)输入N组数。(1<=N<=50)(-100<=xy<=100)输入0结束。
输出:AB使得Ax+By!=0且Ax+By>0的数目与Ax+By<0的数目相同(-500<=AB<=500)
如:
Sample Input

2
-20 20
-30 20
-10 -50
10 -5
0

Sample Output

0 1

我的代码:

#include<stdio.h>#define MAXN 50+10int main(){    int x[MAXN]y[MAXN]n;do{    scanf(""%d""&n);    if(n==0)break;            int ijk;    for(i=0;i<2*n;i++)        scanf(""%d%d""&x[i]&y[i]);    for(i=-500;i<=500;i++)    {        for(j=-500;j<=500;j++)        {            int ca=0cb=0ok=1;            for(k=0;k<2*n;k++)            {                if(x[k]*i+y[k]*j==0){ok=0;break;}                else if(x[k]*i+y[k]*j>0)ca++;                else cb++;            }            if(ok && ca==cb){printf(""%d %dn""ij);goto lp;}        }    }lp:;}while(n);return 0;}
时间: 2024-10-29 14:14:51

c语言编程-C语言 oj 平台 runtime error 求解的相关文章

c语言编程-C语言编程,拜托了,各位大侠,求正解,!!!

问题描述 C语言编程,拜托了,各位大侠,求正解,!!! **** 编程模拟一物体沿斜面加速下滑并在水平面逐渐减速(如图3所示)的物理过程.并给出各个图标的内容或设置. ****

c语言编程-C语言编程,关于方程组求解

问题描述 C语言编程,关于方程组求解 要求一个任意大小的方程组(Ax=b,A为任意大小的方阵)采用C/C++求特定方程组(系数矩阵维数大于10*10) 解决方案 http://www.jb51.net/article/43418.htmhttp://blog.csdn.net/zhangchao3322218/article/details/7412686http://wenku.baidu.com/link?url=7FR4ZbZi9vtdM8ESka2_G5XiW063Y-jGrhs_zDL

c语言编程-C语言编程问题,求大神帮助

问题描述 C语言编程问题,求大神帮助 斐波那契数列An,定义fn=An/An-1,要求当fn-fn-1<0.001时,输出此时的fn和n,用c语言实现,,求程序 解决方案 首项和第二项有给出是多少吗?

c语言编程-c语言。。。。。。。。。

问题描述 c语言......... 在c中数字的正逆程序怎么写??????????......??????????????????? 解决方案 预处理 C程序的源代码中可包括各种编译指令,这些指令称为预处理命令.虽然它们实际上不是C语言的一部分,但却扩展了C程序设计的环境.本节将介绍如何应用预处理程序和注释简化程序开发过程,并提高程序的可读性. 4.7.1C语言的预处理程序 ANSI标准定义的C语言预处理程序包括下列命令: #define #error #include #if #else #e

c语言编程-C语言作业,要求只能用C语言写

问题描述 C语言作业,要求只能用C语言写 第17题,求高手帮忙 解决方案 http://www.doc88.com/p-949523816069.htmlhttp://www.docin.com/p-19120799.htmlhttp://download.csdn.net/download/xiaojiang101/4677990 解决方案二: C语言作业_第二堂c语言作业C语言作业

c语言编程-c语言中碰到的问题,是我头晕了吗?谢谢解答

问题描述 c语言中碰到的问题,是我头晕了吗?谢谢解答 #include #include main() { FILE *fp; int k,j,i,rj,t; int a[18]; char sbuf[SIZE],filename[10]; j=KEY; printf("请输入您的身份证号:n"); for(i=0;i<18;i++) { scanf("%d",&a[i]); } printf("请输入一个文件名用于保存注册后获得密码:n&q

c语言编程-C语言 选择法 从小往大排列数字 但是我这个程序无法得到正确结果 why

问题描述 C语言 选择法 从小往大排列数字 但是我这个程序无法得到正确结果 why #include void sort(int array[],int n) {int i,t; for(i=0;i<n-1;i++) { if(array[i+1]<array[i]) t=array[i+1];array[i+1]=array[i];array[i]=t;} } int main() { int a[10],i; printf("enter the arrayn"); fo

c语言编程-C语言关于使用结构体数组的问题

问题描述 C语言关于使用结构体数组的问题 #include struct Student { int mun; long char name[5]; int score[3]; struct Student *next; }; int main() { struct Student a,b,c,*head,*p; a.mun=10101;a.name="张丹";a.score[0]=89;a.score[1]=95;a.score[2]=91; b.mun=10103;a.name=&

c语言编程-C语言运行总是出问题。。。。

问题描述 C语言运行总是出问题.... #include #include #include #include //将一块内存数据写入文件中 使用的函数为:fwrite; #define NUM 2 typedef struct { char name[20]; int age; char email[50]; }person; //定义结构体 结构体名为person; void getinfor(person* pinfor) { printf("input name: "); ge