
PATAdvanced Level
文章平均质量分 78
成功捕捉楼上
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
1001. A+B Format (20)
恩 刷回PAT。 原题描述如下 Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits). Input原创 2017-11-28 09:58:00 · 210 阅读 · 0 评论 -
1002. A+B for Polynomials
#include int main ( ) { int i , j , K1 , K2 ; int a , B[1001] ; float A[1001] = {0} , b ; scanf("%d",&K1 ); for ( i = 1 ; i <= K1 ; i++ ) { scanf("%d %f",&a, &b );原创 2017-11-28 10:56:36 · 170 阅读 · 0 评论