博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
9月22日
阅读量:4949 次
发布时间:2019-06-11

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

1、创建一个drawboard 

#import "DrawBoard1.h"

 

@implementation DrawBoard1

-(void)drawRect:(CGRect)rect{

    CGContextRef context=UIGraphicsGetCurrentContext();

 

    CGContextMoveToPoint(context,100,200);

    CGContextAddLineToPoint(context,100,400);

 

    CGContextAddCurveToPoint(context,100,400,400,250,100,200);

    CGContextMoveToPoint(context, 75, 175);

    CGContextAddLineToPoint(context,75,425);

    CGContextAddCurveToPoint(context,75,425,500,250,75,175);

    

    [[UIColor colorWithRed:1 green:1 blue:0 alpha:1]setFill];

    CGContextDrawPath(context,kCGPathEOFillStroke);

 

    CGContextAddEllipseInRect(context,CGRectMake(250,375,40,40));

    CGContextAddEllipseInRect(context,CGRectMake(235,360,70,70));

    [[UIColor colorWithRed:1 green:0 blue:0 alpha:1]setFill];

    CGContextDrawPath(context,kCGPathEOFillStroke);

    CGContextStrokePath(context);

    

}

 

 

 

 

@end

 

 

2、

n设5个同学修了高等数学﹑普通物理、程序设计语言并取得了成绩,现计算三门课总分、平均分,每门课的总分、平均分,每个同学的总分、平均分
 
 
 

#include<stdio.h>

int main(void)

{

    int math[]={

91,67,88,78,81};

    int physize[]={

87,79,81,86,67};

    int programming[]={

86,81,85,92,87};

    int all_sum=0;

    float all_average=0;

    int subject_sum[3]={

0,0,0};

    float subject_average[3];

    int student_sum[5];

    float student_average[5];

    int i=0;

        for (i=0; i<=4; i++)

        {

            student_sum[i]=math[i]+physize[i]+programming[i];

            student_average[i]=student_sum[i]/3.0;

            subject_sum[0]+=math[i];

            subject_sum[1]+=physize[i];

            subject_sum[2]+=programming[i];

            subject_average[0]=subject_sum[0]/5.0;

            subject_average[1]=subject_sum[1]/5.0;

            subject_average[2]=subject_sum[2]/5.0;

            all_sum=subject_sum[0]+subject_sum[1]+subject_sum[2];

            all_average=all_sum/5.0;

        printf("%d同学的总成绩为%d,平均成绩为%f\n",i,student_sum[i],student_average[i]);}

    printf("总成绩为%d,总平均成绩为%f\n数学总成绩为%d,数学平均成绩为%f,物理总成绩为%d,物理平均成绩为%f\n程序设计总成绩为%d,程序设计平均成绩为%f\n",all_sum,all_average,subject_sum[0],subject_average[0],subject_sum[1],subject_average[1],subject_sum[2],subject_average[2]);

    return 0;

}

 

3,对与库的理解

转载于:https://www.cnblogs.com/Mr573/p/3986879.html

你可能感兴趣的文章
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
SPARK安装一:Windows下VirtualBox安装CentOS
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
UVa11078:Open Credit System
查看>>
MongoDB的简单使用
查看>>
git clone 遇到的问题
查看>>
hdfs 命令使用
查看>>
hdu 1709 The Balance
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
Codeforces 40 E. Number Table
查看>>
CLR via C#(第3 版)
查看>>
java语法之final
查看>>
关于响应式布局
查看>>
详解ASP.Net 4中的aspnet_regsql.exe
查看>>
python 多进程和多线程的区别
查看>>
hdu1398
查看>>