#include<stdio.h>
main(){
int a;
char b;
float c;
double d;
a=100;
b='C';
c=14.1;
d=0.95148;
printf("庆祝建党%d周年! \n",a);
printf("I LOVE %CHINA! \n",b);
printf("中国人口总数超%.1f亿,中国共产党员总数为%7.5亿名。 \n",c,d);
#include<stdio.h>
main(){
int a;
char b;
float c;
double d;
a=100;
b='C';
c=14.1;
d=0.95148;
printf("庆祝建党%d周年! \n",a);
printf("I LOVE %CHINA! \n",b);
printf("中国人口总数超%.1f亿,中国共产党员总数为%7.5亿名。 \n",c,d);