摘要: /*输入一个以回车结束的字符串,它由数字字符组成,将该字符串转换成整数后输出。**输入提示信息:"Enter a string: "**输出格式要求:"digit = %d\n"*/ #include <stdio.h> int main(){ unsigned long n = 0; char c 阅读全文
posted @ 2017-04-13 18:32 低调小怪 阅读(1290) 评论(0) 推荐(0)
摘要: /*主函数Gcd为求公因数的函数输入为负时返回-1*/ int main(){ int a, b; printf("Input a,b:"); scanf("%d,%d",&a,&b); if (a < 0 || b < 0) printf("Input number should be posit 阅读全文
posted @ 2017-04-13 13:26 低调小怪 阅读(3369) 评论(0) 推荐(0)