博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
160809329 仲兆鹏 3
阅读量:6588 次
发布时间:2019-06-24

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

#include
//1.三角形int main(){ printf("*\n"); printf("**\n"); printf("***\n"); printf("****\n"); printf("*****\n"); printf("******\n"); printf("*******\n"); printf("********\n"); printf("*********\n"); printf("**********\n"); }
#include
//2.十行矩形 int main(){ printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n"); printf("**********\n");}
#include
//3.倒三角形 int main(){ printf("**********\n"); printf("*********\n"); printf("********\n"); printf("*******\n"); printf("******\n"); printf("*****\n"); printf("****\n"); printf("***\n"); printf("**\n"); printf("*\n");}
#include
// 4.五级制成绩 int main(){ char score; scanf("%c",&score); switch (score) { case 'A': printf("90~100"); break; case 'B': printf("80~89"); break; case 'C': printf("70~79"); break; case 'D': printf("60~69"); break; case 'E': printf("0~59"); break; } }
#include
//7. 显示个位数字,十位数字和百位数字的值。 #include
int main(){ int t[10]={
0}; int a; scanf("%d",&a); int i=0; while(a!=0) { t[i++]=a%10; a=a/10; } int j; for(j=0;j<=i;j++) printf("%.0f",(t[j]*pow(10,j)))
#include
//8.分段函数#include
int main (){ double x; double y; scanf("%lf",&x); if(x>=0) y=sqrt(x); else y=pow(x+1,2)+2*x+1/x; printf("f(x)=%f",y); }

 

转载于:https://www.cnblogs.com/Dawnzms/p/5920944.html

你可能感兴趣的文章
深度解析Istio系列之安全模块篇
查看>>
面向对象
查看>>
HDU 1058 Humble Numbers
查看>>
wps10.1中将txt转为excel
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
poj1985 求树的直径
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
CF456B Fedya and Maths 找规律
查看>>
转载:Beginning WF 4.0翻译——第三章(流程图工作流)
查看>>
芯片测试
查看>>
在源代码中插入防止盗版代码片段的方式
查看>>
ffserver联合ffmpeg建立媒体服务器
查看>>
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
Navicat for MySQL 使用SSH方式链接远程数据库(二)
查看>>
poj 1274The Perfect Stall
查看>>
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>
scrapy爬虫框架实例一,爬取自己博客
查看>>
手把手教你通过Thrift 访问ApsaraDB for HBase
查看>>