码迷,mamicode.com
首页 > 其他好文 > 详细

实验2

时间:2019-11-02 19:49:26      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:std   style   png   数组   char   mamicode   color   clu   turn   

#include<stdio.h> 
int main(){
    int x=1234;
    float f=123.456;
    double m=123.456;
    char ch=a;
    char a[]="Hello,world";//定义一个数组a,数组中连续存放了字符串常量hello,world!
    int y=3,z=4;
    printf("%d %d\n",y,z);
    printf("y=%d,z=%d\n",y,z);
    printf("%8d,%2d\n",x,x);
    printf("%f,%8f,%8.1f,%0.2f,%.2e\n",f,f,f,f,f);
    printf("%lf\n",m);
    printf("%3c\n",ch);
    printf("%s\n%15s\n%10.5s\n%.3s\n",a,a,a,a,a);
    return 0; 
}

一致技术图片

实验2

标签:std   style   png   数组   char   mamicode   color   clu   turn   

原文地址:https://www.cnblogs.com/201qx/p/11783591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!