- 博客(5)
- 资源 (2)
- 收藏
- 关注
原创 C语言练习100例-统计学生成绩 (5分) PTA练习题
#include "stdio.h"int main(){ int N,a=0,b=0,c=0,d=0,e=0; int score[1001]; scanf("%d",&N); for(int i=0;i<N;i++) { scanf("%d",&score[i]); } for(int i=0;i<N;i++) { if (sco...
2019-12-26 19:27:39 2090
原创 C语言练习100例-字符串大小写字母转换 PTA练习题
#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ char ch; while((ch = getchar()) !='#') { if(ch>='A'&&ch<='Z') printf("%c",ch +=32); else if(ch>='a'&...
2020-01-02 15:26:55 3372
原创 C语言练习100例-选择法排序 PTA练习题
#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ int i, index, k, n, temp; int a[10]; scanf("%d", &n); for(i=0; i<n; i++) scanf("%d", &a[i]); for(k=0; k<n-1; k++) ...
2020-01-01 21:17:58 1922
原创 C语言练习100例-人民币兑换问题 PTA练习题
#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ int a,b,c;//5分 2分 1分个数 int n; int flag=0; scanf("%d",&n); for(a=1;a<30;a++) { for(b=1;b<75;b++) { for(c=1;c<1...
2020-01-01 20:34:21 3417
原创 C语言练习100例-计算两数的和与差 PTA 练习题
void sum_diff( float op1, float op2, float *psum, float *pdiff ) { *psum = op1 + op2; *pdiff = op1 - op2; }
2019-12-26 19:34:55 2401
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人